Fonte template redazione documento: https://www.makeareadme.com/.
API REST per la ricerca dei tipi di dato a cui l’utente che invoca il servizio è abilitato. Il servizio permette di filtrare i risultati in base al contesto operativo, offrendo due endpoint distinti a seconda che la ricerca avvenga per struttura SACER o per versatore PING. In entrambi i casi, il servizio restituisce una lista in formato JSON standard secondo i criteri impostati.
Di seguito un esempio di invocazione dell'API esposta (per maggiori informazioni è possibile utilizzare il descrittore YAML ottenuto secondo definizione standard OAS 3.1):
- Ricerca per Struttura (SACER). Utilizzare questo endpoint per ottenere i tipi dato abilitati per una specifica struttura:
curl -X 'GET' \
'<URI>/tipidato-abilitati/api/strut/tipidato?amb=PARER_PROVA&ente=ente_test&strut=PARER_TEST' \
-H 'accept: application/json'
- Ricerca per Versatore (PING). Utilizzare questo endpoint per ottenere i tipi dato abilitati per un determinato versatore:
curl -X 'GET' \
'<URI>/tipidato-abilitati/api/vers/tipidato?amb=PARER_PROVA&vers=AGENZIA_RICOSTRUZIONE' \
-H 'accept: application/json'
Per la definizione completa è possibile utilizzare l'apposito descrittore OpenAPI generato mediante MicroProfile (Swagger) : <URI>/tipidato-abilitati/q/swagger-ui
Di seguito sono riportate le varie modalità con cui è possibile rendere operativo questo microservizio.
Per la creazione dell'applicazione con risorse necessarie correlate sotto Openshift (https://www.redhat.com/it/technologies/cloud-computing/openshift) viene fornito un apposito template (la soluzione, modificabile, è basata su Oracle DB) template che permette la creazione dell'applicazione su soluzione Openshift (sia licensed che open).
Basato su Quarkus e Java 21, è consigliato fare riferimento alle linee guida ufficiali per avere ulteriori dettagli nonché le best practice da utilizzare in caso di modifiche ed interventi al progetto stesso. Le configurazioni sono legate ai file yaml che sono gestiti come previsto dai meccanismi di overrinding messi a disposizione, vedi apposita guida.
Per effettuare una build del progetto via Docker è stato predisposto lo standard Dockerfile e una directory docker_build con all'interno i file da integrare all'immagine base. La directory docker_build è strutturata come segue:
|____README.md
|____certs
| |____README.md
al fine di integrare certificati non presenti di default nell'immagine principale è stata introdotta la sotto-directory docker_build/certs in cui dovranno essere inseriti gli appositi certificati che verranno "trustati" in fase di build dell'immagine. La compilazione dell'immagine può essere eseguita con il comando:
docker build -t <registry> -f ./Dockerfile --build-arg EXTRA_CA_CERTS_DIR=docker_build/certs .Installazione wrapper maven, attraverso il seguente comando:
mvn wrapper:wrapperRichiesti:
- Java versione 21+ https://jdk.java.net/archive/
- Apache Maven 3.9.0+ https://maven.apache.org/
| GroupId | ArtifactId | Version |
|---|---|---|
| aopalliance | aopalliance | 1.0 |
| com.aayushatharva.brotli4j | brotli4j | 1.16.0 |
| com.aayushatharva.brotli4j | native-linux-x86_64 | 1.16.0 |
| com.aayushatharva.brotli4j | service | 1.16.0 |
| com.fasterxml.jackson.core | jackson-annotations | 2.20 |
| com.fasterxml.jackson.core | jackson-core | 2.20.0 |
| com.fasterxml.jackson.core | jackson-databind | 2.20.0 |
| com.fasterxml.jackson.dataformat | jackson-dataformat-yaml | 2.20.0 |
| com.fasterxml.jackson.datatype | jackson-datatype-jdk8 | 2.20.0 |
| com.fasterxml.jackson.datatype | jackson-datatype-jsr310 | 2.20.0 |
| com.fasterxml.jackson.module | jackson-module-parameter-names | 2.20.0 |
| com.fasterxml | classmate | 1.7.0 |
| com.github.ben-manes.caffeine | caffeine | 3.2.2 |
| com.google.errorprone | error_prone_annotations | 2.41.0 |
| com.google.guava | failureaccess | 1.0.1 |
| com.google.guava | guava | 33.4.8-jre |
| com.google.inject | guice | classes |
| com.h2database | h2 | 2.3.230 |
| com.oracle.database.jdbc | ojdbc17 | 23.6.0.24.10 |
| com.oracle.database.nls | orai18n | 23.6.0.24.10 |
| com.sun.istack | istack-commons-runtime | 4.1.2 |
| commons-cli | commons-cli | 1.9.0 |
| commons-codec | commons-codec | 1.19.0 |
| commons-io | commons-io | 2.20.0 |
| io.agroal | agroal-api | 2.8 |
| io.agroal | agroal-narayana | 2.8 |
| io.agroal | agroal-pool | 2.8 |
| io.github.dmlloyd | jdk-classfile-backport | 24.0 |
| io.netty | netty-buffer | 4.1.127.Final |
| io.netty | netty-codec-dns | 4.1.127.Final |
| io.netty | netty-codec-haproxy | 4.1.127.Final |
| io.netty | netty-codec-http2 | 4.1.127.Final |
| io.netty | netty-codec-http | 4.1.127.Final |
| io.netty | netty-codec-socks | 4.1.127.Final |
| io.netty | netty-codec | 4.1.127.Final |
| io.netty | netty-common | 4.1.127.Final |
| io.netty | netty-handler-proxy | 4.1.127.Final |
| io.netty | netty-handler | 4.1.127.Final |
| io.netty | netty-resolver-dns | 4.1.127.Final |
| io.netty | netty-resolver | 4.1.127.Final |
| io.netty | netty-transport-native-unix-common | 4.1.127.Final |
| io.netty | netty-transport | 4.1.127.Final |
| io.quarkus.arc | arc-processor | 3.28.4 |
| io.quarkus.arc | arc | 3.28.4 |
| io.quarkus.gizmo | gizmo2 | 2.0.0.Beta6 |
| io.quarkus.gizmo | gizmo | 1.9.0 |
| io.quarkus.qute | qute-core | 3.28.4 |
| io.quarkus.resteasy.reactive | resteasy-reactive-common-types | 3.28.4 |
| io.quarkus.resteasy.reactive | resteasy-reactive-common | 3.28.4 |
| io.quarkus.resteasy.reactive | resteasy-reactive-jackson | 3.28.4 |
| io.quarkus.resteasy.reactive | resteasy-reactive-vertx | 3.28.4 |
| io.quarkus.resteasy.reactive | resteasy-reactive | 3.28.4 |
| io.quarkus.security | quarkus-security | 2.2.1 |
| io.quarkus.vertx.utils | quarkus-vertx-utils | 3.28.4 |
| io.quarkus | quarkus-agroal | 3.28.4 |
| io.quarkus | quarkus-arc-deployment | 3.28.4 |
| io.quarkus | quarkus-arc-dev | 3.28.4 |
| io.quarkus | quarkus-arc | 3.28.4 |
| io.quarkus | quarkus-bootstrap-app-model | 3.28.4 |
| io.quarkus | quarkus-bootstrap-core | 3.28.4 |
| io.quarkus | quarkus-bootstrap-gradle-resolver | 3.28.4 |
| io.quarkus | quarkus-bootstrap-maven-resolver | 3.28.4 |
| io.quarkus | quarkus-bootstrap-maven4-resolver | 3.28.4 |
| io.quarkus | quarkus-bootstrap-runner | 3.28.4 |
| io.quarkus | quarkus-builder | 3.28.4 |
| io.quarkus | quarkus-caffeine | 3.28.4 |
| io.quarkus | quarkus-class-change-agent | 3.28.4 |
| io.quarkus | quarkus-classloader-commons | 3.28.4 |
| io.quarkus | quarkus-config-yaml | 3.28.4 |
| io.quarkus | quarkus-core-deployment | 3.28.4 |
| io.quarkus | quarkus-core | 3.28.4 |
| io.quarkus | quarkus-credentials | 3.28.4 |
| io.quarkus | quarkus-datasource-common | 3.28.4 |
| io.quarkus | quarkus-datasource | 3.28.4 |
| io.quarkus | quarkus-development-mode-spi | 3.28.4 |
| io.quarkus | quarkus-devui-deployment-spi | 3.28.4 |
| io.quarkus | quarkus-elytron-security-common | 3.28.4 |
| io.quarkus | quarkus-elytron-security-properties-file | 3.28.4 |
| io.quarkus | quarkus-elytron-security | 3.28.4 |
| io.quarkus | quarkus-fs-util | 1.2.0 |
| io.quarkus | quarkus-hibernate-orm | 3.28.4 |
| io.quarkus | quarkus-hibernate-validator-spi | 3.28.4 |
| io.quarkus | quarkus-hibernate-validator | 3.28.4 |
| io.quarkus | quarkus-ide-launcher | 3.28.4 |
| io.quarkus | quarkus-jackson | 3.28.4 |
| io.quarkus | quarkus-jacoco | 3.28.4 |
| io.quarkus | quarkus-jaxb | 3.28.4 |
| io.quarkus | quarkus-jaxp | 3.28.4 |
| io.quarkus | quarkus-jdbc-oracle | 3.28.4 |
| io.quarkus | quarkus-jsonp | 3.28.4 |
| io.quarkus | quarkus-junit5-config | 3.28.4 |
| io.quarkus | quarkus-junit5-mockito-config | 3.28.4 |
| io.quarkus | quarkus-junit5-mockito | 3.28.4 |
| io.quarkus | quarkus-junit5 | 3.28.4 |
| io.quarkus | quarkus-mutiny | 3.28.4 |
| io.quarkus | quarkus-narayana-jta | 3.28.4 |
| io.quarkus | quarkus-netty | 3.28.4 |
| io.quarkus | quarkus-oidc-common | 3.28.4 |
| io.quarkus | quarkus-oidc | 3.28.4 |
| io.quarkus | quarkus-qute | 3.28.4 |
| io.quarkus | quarkus-rest-common | 3.28.4 |
| io.quarkus | quarkus-rest-jackson-common | 3.28.4 |
| io.quarkus | quarkus-rest-jackson | 3.28.4 |
| io.quarkus | quarkus-rest-jaxb | 3.28.4 |
| io.quarkus | quarkus-rest-qute | 3.28.4 |
| io.quarkus | quarkus-rest | 3.28.4 |
| io.quarkus | quarkus-security-jpa-common | 3.28.4 |
| io.quarkus | quarkus-security-jpa | 3.28.4 |
| io.quarkus | quarkus-security-runtime-spi | 3.28.4 |
| io.quarkus | quarkus-security | 3.28.4 |
| io.quarkus | quarkus-smallrye-context-propagation-spi | 3.28.4 |
| io.quarkus | quarkus-smallrye-context-propagation | 3.28.4 |
| io.quarkus | quarkus-smallrye-health | 3.28.4 |
| io.quarkus | quarkus-smallrye-jwt-build | 3.28.4 |
| io.quarkus | quarkus-smallrye-openapi | 3.28.4 |
| io.quarkus | quarkus-swagger-ui | 3.28.4 |
| io.quarkus | quarkus-test-common | 3.28.4 |
| io.quarkus | quarkus-test-h2 | 3.28.4 |
| io.quarkus | quarkus-test-security | 3.28.4 |
| io.quarkus | quarkus-tls-registry-spi | 3.28.4 |
| io.quarkus | quarkus-tls-registry | 3.28.4 |
| io.quarkus | quarkus-transaction-annotations | 3.28.4 |
| io.quarkus | quarkus-vertx-http | 3.28.4 |
| io.quarkus | quarkus-vertx-latebound-mdc-provider | 3.28.4 |
| io.quarkus | quarkus-vertx | 3.28.4 |
| io.quarkus | quarkus-virtual-threads | 3.28.4 |
| io.quarkus | quarkus-websockets-next-spi | 3.28.4 |
| io.rest-assured | json-path | 5.5.6 |
| io.rest-assured | rest-assured-common | 5.5.6 |
| io.rest-assured | rest-assured | 5.5.6 |
| io.rest-assured | xml-path | 5.5.6 |
| io.smallrye.beanbag | smallrye-beanbag-maven | 1.5.3 |
| io.smallrye.beanbag | smallrye-beanbag-sisu | 1.5.3 |
| io.smallrye.beanbag | smallrye-beanbag | 1.5.3 |
| io.smallrye.certs | smallrye-private-key-pem-parser | 0.9.2 |
| io.smallrye.common | smallrye-common-annotation | 2.13.9 |
| io.smallrye.common | smallrye-common-classloader | 2.13.9 |
| io.smallrye.common | smallrye-common-constraint | 2.13.9 |
| io.smallrye.common | smallrye-common-cpu | 2.13.9 |
| io.smallrye.common | smallrye-common-expression | 2.13.9 |
| io.smallrye.common | smallrye-common-function | 2.13.9 |
| io.smallrye.common | smallrye-common-io | 2.13.9 |
| io.smallrye.common | smallrye-common-net | 2.13.9 |
| io.smallrye.common | smallrye-common-os | 2.13.9 |
| io.smallrye.common | smallrye-common-process | 2.13.9 |
| io.smallrye.common | smallrye-common-ref | 2.13.9 |
| io.smallrye.common | smallrye-common-resource | 2.13.9 |
| io.smallrye.common | smallrye-common-vertx-context | 2.13.9 |
| io.smallrye.config | smallrye-config-common | 3.13.4 |
| io.smallrye.config | smallrye-config-core | 3.13.4 |
| io.smallrye.config | smallrye-config-source-yaml | 3.13.4 |
| io.smallrye.config | smallrye-config-validator | 3.13.4 |
| io.smallrye.config | smallrye-config | 3.13.4 |
| io.smallrye.reactive | mutiny-smallrye-context-propagation | 2.9.4 |
| io.smallrye.reactive | mutiny-zero-flow-adapters | 1.1.1 |
| io.smallrye.reactive | mutiny | 2.9.4 |
| io.smallrye.reactive | smallrye-mutiny-vertx-auth-common | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-bridge-common | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-core | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-runtime | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-uri-template | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-web-client | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-web-common | 3.19.2 |
| io.smallrye.reactive | smallrye-mutiny-vertx-web | 3.19.2 |
| io.smallrye.reactive | smallrye-reactive-converter-api | 3.0.3 |
| io.smallrye.reactive | smallrye-reactive-converter-mutiny | 3.0.3 |
| io.smallrye.reactive | vertx-mutiny-generator | 3.19.2 |
| io.smallrye | jandex-gizmo2 | 3.5.0 |
| io.smallrye | jandex | 3.5.0 |
| io.smallrye | smallrye-context-propagation-api | 2.2.1 |
| io.smallrye | smallrye-context-propagation-jta | 2.2.1 |
| io.smallrye | smallrye-context-propagation-storage | 2.2.1 |
| io.smallrye | smallrye-context-propagation | 2.2.1 |
| io.smallrye | smallrye-fault-tolerance-vertx | 6.9.3 |
| io.smallrye | smallrye-health-api | 4.2.0 |
| io.smallrye | smallrye-health-provided-checks | 4.2.0 |
| io.smallrye | smallrye-health | 4.2.0 |
| io.smallrye | smallrye-jwt-build | 4.6.2 |
| io.smallrye | smallrye-jwt-common | 4.6.2 |
| io.smallrye | smallrye-jwt | 4.6.2 |
| io.smallrye | smallrye-open-api-core | 4.0.12 |
| io.smallrye | smallrye-open-api-model | 4.0.12 |
| io.vertx | vertx-auth-common | 4.5.21 |
| io.vertx | vertx-bridge-common | 4.5.21 |
| io.vertx | vertx-codegen | 4.5.21 |
| io.vertx | vertx-core | 4.5.21 |
| io.vertx | vertx-uri-template | 4.5.21 |
| io.vertx | vertx-web-client | 4.5.21 |
| io.vertx | vertx-web-common | 4.5.21 |
| io.vertx | vertx-web | 4.5.21 |
| it.eng.parer | idp-jaas-rdbms | 0.0.9 |
| it.eng.parer | quarkus-custom-log-handlers | 1.3.0 |
| jakarta.activation | jakarta.activation-api | 2.1.4 |
| jakarta.annotation | jakarta.annotation-api | 3.0.0 |
| jakarta.authentication | jakarta.authentication-api | 3.1.0 |
| jakarta.authorization | jakarta.authorization-api | 3.0.0 |
| jakarta.el | jakarta.el-api | 6.0.1 |
| jakarta.enterprise | jakarta.enterprise.cdi-api | 4.1.0 |
| jakarta.enterprise | jakarta.enterprise.lang-model | 4.1.0 |
| jakarta.inject | jakarta.inject-api | 2.0.1 |
| jakarta.interceptor | jakarta.interceptor-api | 2.2.0 |
| jakarta.json | jakarta.json-api | 2.1.3 |
| jakarta.persistence | jakarta.persistence-api | 3.2.0 |
| jakarta.resource | jakarta.resource-api | 2.1.0 |
| jakarta.servlet | jakarta.servlet-api | 6.0.0 |
| jakarta.transaction | jakarta.transaction-api | 2.0.1 |
| jakarta.validation | jakarta.validation-api | 3.1.1 |
| jakarta.ws.rs | jakarta.ws.rs-api | 3.1.0 |
| jakarta.xml.bind | jakarta.xml.bind-api | 4.0.4 |
| javax.annotation | javax.annotation-api | 1.3.2 |
| javax.inject | javax.inject | 1 |
| net.bytebuddy | byte-buddy-agent | 1.17.6 |
| net.bytebuddy | byte-buddy | 1.17.6 |
| org.aesh | aesh | 2.8.2 |
| org.aesh | readline | 2.6 |
| org.antlr | antlr4-runtime | 4.13.2 |
| org.apache.commons | commons-compress | 1.28.0 |
| org.apache.commons | commons-lang3 | 3.18.0 |
| org.apache.groovy | groovy-json | 4.0.22 |
| org.apache.groovy | groovy-xml | 4.0.22 |
| org.apache.groovy | groovy | 4.0.22 |
| org.apache.httpcomponents | httpclient | 4.5.14 |
| org.apache.httpcomponents | httpcore | 4.4.16 |
| org.apache.httpcomponents | httpmime | 4.5.14 |
| org.apache.maven.resolver | maven-resolver-api | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-connector-basic | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-impl | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-named-locks | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-spi | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-transport-http | 1.9.23 |
| org.apache.maven.resolver | maven-resolver-transport-wagon | 1.9.24 |
| org.apache.maven.resolver | maven-resolver-util | 1.9.24 |
| org.apache.maven.shared | maven-shared-utils | 3.4.2 |
| org.apache.maven.wagon | wagon-file | 3.5.3 |
| org.apache.maven.wagon | wagon-http-shared | 3.5.3 |
| org.apache.maven.wagon | wagon-http | 3.5.3 |
| org.apache.maven.wagon | wagon-provider-api | 3.5.3 |
| org.apache.maven | maven-api-meta | 4.0.0-alpha-7 |
| org.apache.maven | maven-api-xml | 4.0.0-alpha-7 |
| org.apache.maven | maven-artifact | 3.9.11 |
| org.apache.maven | maven-builder-support | 3.9.11 |
| org.apache.maven | maven-core | 3.9.11 |
| org.apache.maven | maven-embedder | 3.9.11 |
| org.apache.maven | maven-model-builder | 3.9.11 |
| org.apache.maven | maven-model | 3.9.11 |
| org.apache.maven | maven-plugin-api | 3.9.11 |
| org.apache.maven | maven-repository-metadata | 3.9.11 |
| org.apache.maven | maven-resolver-provider | 3.9.11 |
| org.apache.maven | maven-settings-builder | 3.9.11 |
| org.apache.maven | maven-settings | 3.9.11 |
| org.apache.maven | maven-xml-impl | 4.0.0-alpha-7 |
| org.apiguardian | apiguardian-api | 1.1.2 |
| org.bitbucket.b_c | jose4j | 0.9.6 |
| org.ccil.cowan.tagsoup | tagsoup | 1.2.1 |
| org.codehaus.plexus | plexus-cipher | 2.0 |
| org.codehaus.plexus | plexus-classworlds | 2.6.0 |
| org.codehaus.plexus | plexus-component-annotations | 2.1.0 |
| org.codehaus.plexus | plexus-interpolation | 1.26 |
| org.codehaus.plexus | plexus-sec-dispatcher | 2.0 |
| org.codehaus.plexus | plexus-utils | 3.5.1 |
| org.codehaus.plexus | plexus-xml | 4.0.2 |
| org.crac | crac | 1.5.0 |
| org.eclipse.angus | angus-activation | 2.0.3 |
| org.eclipse.microprofile.config | microprofile-config-api | 3.1 |
| org.eclipse.microprofile.context-propagation | microprofile-context-propagation-api | 1.3 |
| org.eclipse.microprofile.health | microprofile-health-api | 4.0.1 |
| org.eclipse.microprofile.jwt | microprofile-jwt-auth-api | 2.1 |
| org.eclipse.microprofile.openapi | microprofile-openapi-api | 4.0.2 |
| org.eclipse.microprofile.reactive-streams-operators | microprofile-reactive-streams-operators-api | 3.0.1 |
| org.eclipse.parsson | parsson | 1.1.7 |
| org.eclipse.sisu | org.eclipse.sisu.inject | 0.9.0.M4 |
| org.eclipse.sisu | org.eclipse.sisu.plexus | 0.9.0.M4 |
| org.fusesource.jansi | jansi | 2.4.0 |
| org.glassfish.expressly | expressly | 6.0.0 |
| org.glassfish.jaxb | jaxb-core | 4.0.5 |
| org.glassfish.jaxb | jaxb-runtime | 4.0.5 |
| org.glassfish.jaxb | txw2 | 4.0.5 |
| org.graalvm.sdk | nativeimage | 23.1.2 |
| org.graalvm.sdk | word | 23.1.2 |
| org.hamcrest | hamcrest | 2.2 |
| org.hibernate.models | hibernate-models | 1.0.1 |
| org.hibernate.orm | hibernate-core | 7.1.4.Final |
| org.hibernate.orm | hibernate-graalvm | 7.1.4.Final |
| org.hibernate.validator | hibernate-validator | 9.0.1.Final |
| org.hibernate | quarkus-local-cache | 0.3.1 |
| org.jacoco | org.jacoco.agent | 0.8.13 |
| org.jacoco | org.jacoco.agent | runtime |
| org.jacoco | org.jacoco.core | 0.8.13 |
| org.jacoco | org.jacoco.report | 0.8.13 |
| org.jboss.invocation | jboss-invocation | 2.0.0.Final |
| org.jboss.logging | commons-logging-jboss-logging | 1.0.0.Final |
| org.jboss.logging | jboss-logging | 3.6.1.Final |
| org.jboss.logmanager | jboss-logmanager | 3.1.2.Final |
| org.jboss.narayana.jta | narayana-jta | 7.2.2.Final |
| org.jboss.narayana.jts | narayana-jts-integration | 7.2.2.Final |
| org.jboss.slf4j | slf4j-jboss-logmanager | 2.0.0.Final |
| org.jboss.threads | jboss-threads | 3.9.1 |
| org.jboss | jboss-transaction-spi | 8.0.0.Final |
| org.jctools | jctools-core | 4.0.5 |
| org.jspecify | jspecify | 1.0.0 |
| org.junit.jupiter | junit-jupiter-api | 5.13.4 |
| org.junit.jupiter | junit-jupiter-engine | 5.13.4 |
| org.junit.jupiter | junit-jupiter-params | 5.13.4 |
| org.junit.jupiter | junit-jupiter | 5.13.4 |
| org.junit.platform | junit-platform-commons | 1.13.4 |
| org.junit.platform | junit-platform-engine | 1.13.4 |
| org.junit.platform | junit-platform-launcher | 1.13.4 |
| org.mockito | mockito-core | 5.19.0 |
| org.mockito | mockito-junit-jupiter | 5.19.0 |
| org.objenesis | objenesis | 3.3 |
| org.opentest4j | opentest4j | 1.3.0 |
| org.ow2.asm | asm-analysis | 9.8 |
| org.ow2.asm | asm-commons | 9.8 |
| org.ow2.asm | asm-tree | 9.8 |
| org.ow2.asm | asm-util | 9.8 |
| org.ow2.asm | asm | 9.8 |
| org.reactivestreams | reactive-streams | 1.0.4 |
| org.slf4j | slf4j-api | 2.0.17 |
| org.wildfly.common | wildfly-common | 2.0.1 |
| org.wildfly.security | wildfly-elytron-asn1 | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-auth-server | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-auth | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-base | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-credential | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-encryption | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-keystore | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-password-impl | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-permission | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-provider-util | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-realm | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-util | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-x500-cert-util | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-x500-cert | 2.6.5.Final |
| org.wildfly.security | wildfly-elytron-x500 | 2.6.5.Final |
| org.yaml | snakeyaml | 2.5 |
- agpl_v3 : GNU Affero General Public License (AGPL) version 3.0
- apache_v2 : Apache License version 2.0
- bsd_2 : BSD 2-Clause License
- bsd_3 : BSD 3-Clause License
- cddl_v1 : COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
- epl_only_v1 : Eclipse Public License - v 1.0
- epl_only_v2 : Eclipse Public License - v 2.0
- epl_v1 : Eclipse Public + Distribution License - v 1.0
- epl_v2 : Eclipse Public License - v 2.0 with Secondary License
- eupl_v1_1 : European Union Public License v1.1
- fdl_v1_3 : GNU Free Documentation License (FDL) version 1.3
- gpl_v1 : GNU General Public License (GPL) version 1.0
- gpl_v2 : GNU General Public License (GPL) version 2.0
- gpl_v3 : GNU General Public License (GPL) version 3.0
- lgpl_v2_1 : GNU General Lesser Public License (LGPL) version 2.1
- lgpl_v3 : GNU General Lesser Public License (LGPL) version 3.0
- mit : MIT-License
Mantainer del progetto è Engineering Ingegneria Informatica S.p.A..
Se interessati a contribuire alla crescita del progetto potete scrivere all'indirizzo email areasviluppoparer@regione.emilia-romagna.it.
Progetto di proprietà di Regione Emilia-Romagna sviluppato a cura di Engineering Ingegneria Informatica S.p.A..
Questo progetto è rilasciato sotto licenza GNU Affero General Public License v3.0 or later (LICENSE.txt).
