Add crates for Servlet libraries implementing JSR 154 and 315

- servletada is the core library (independent of the web server)
- servletada_aws is the servlet support with AWS
- servletada_unit is a library to help in writing servlet unit tests
This commit is contained in:
Stephane Carrez
2019-12-15 22:53:52 +01:00
committed by Alejandro R. Mosteo
parent e22c94940c
commit 7acbd4beea
3 changed files with 76 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
[general]
description = "Web Servlet Library following JSR 154, JSR 315 (Core)"
licenses = ["Apache 2.0"]
maintainers = ["Stephane.Carrez@gmail.com"]
maintainers-logins = ["stcarrez"]
project-files = [
".alire/servletada.gpr"
]
[general.gpr-externals]
SERVLET_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
[general.depends-on]
utilada = "^2.0.0"
security = "^1.2.1"
[[general.actions]]
type = "post-fetch"
command = ["rm", "-f", "config.gpr"]
['1.3.0']
origin = "https://github.com/stcarrez/ada-servlet/archive/1.3.0.tar.gz"
origin-hashes = ["sha512:7ba99a77dea06e058367504b9cd8bf39599f237f09128b1cac1aa55cc067f0380df6e76de374642e89ea1f4a1a4770c1048d40ad7ff5e6f3aaa42415ad5b7082"]
+25
View File
@@ -0,0 +1,25 @@
[general]
description = "Web Servlet Library following JSR 154, JSR 315 (AWS)"
licenses = ["Apache 2.0"]
maintainers = ["Stephane.Carrez@gmail.com"]
maintainers-logins = ["stcarrez"]
project-files = [
".alire/aws/servletada_aws.gpr"
]
[general.gpr-externals]
SERVLET_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
[general.depends-on]
servletada = "^1.3.0"
utilada_aws = "^2.0.0"
[[general.actions]]
type = "post-fetch"
command = ["rm", "-f", "config.gpr"]
['1.3.0']
origin = "https://github.com/stcarrez/ada-servlet/archive/1.3.0.tar.gz"
origin-hashes = ["sha512:7ba99a77dea06e058367504b9cd8bf39599f237f09128b1cac1aa55cc067f0380df6e76de374642e89ea1f4a1a4770c1048d40ad7ff5e6f3aaa42415ad5b7082"]
+26
View File
@@ -0,0 +1,26 @@
[general]
description = "Web Servlet Library following JSR 154, JSR 315 (Testing framework)"
licenses = ["Apache 2.0"]
maintainers = ["Stephane.Carrez@gmail.com"]
maintainers-logins = ["stcarrez"]
project-files = [
".alire/unit/servletada_unit.gpr"
]
[general.gpr-externals]
SERVLET_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
[general.depends-on]
utilada = "^2.0.0"
utilada_unit = "^2.0.0"
servletada = "^1.3.0"
[[general.actions]]
type = "post-fetch"
command = ["rm", "-f", "config.gpr"]
['1.3.0']
origin = "https://github.com/stcarrez/ada-servlet/archive/1.3.0.tar.gz"
origin-hashes = ["sha512:7ba99a77dea06e058367504b9cd8bf39599f237f09128b1cac1aa55cc067f0380df6e76de374642e89ea1f4a1a4770c1048d40ad7ff5e6f3aaa42415ad5b7082"]