aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml78
1 files changed, 65 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index a8eb854c..8313f005 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,12 +10,12 @@
<name>MS specific eIDAS components</name>
- <properties>
+ <properties>
<!-- Project versions -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
-
+
<egiz.eidas.version>${project.version}</egiz.eidas.version>
@@ -39,11 +39,17 @@
<commons-io.version>2.11.0</commons-io.version>
<com.google.guava.version>31.1-jre</com.google.guava.version>
<joda-time.version>2.10.14</joda-time.version>
+ <jackson.version>2.13.2</jackson.version>
<jackson-datatype-jsr310.version>2.13.2</jackson-datatype-jsr310.version>
+ <jackson-databind-nullable.version>0.2.2</jackson-databind-nullable.version>
+ <swagger-parser.version>2.0.29</swagger-parser.version>
<org.slf4j.version>1.7.36</org.slf4j.version>
<log4j.version>2.17.2</log4j.version>
<ch.qos.logback.version>1.2.10</ch.qos.logback.version>
+
+ <!-- for code generation -->
+ <openapi-generator-maven-plugin.version>5.4.0</openapi-generator-maven-plugin.version>
<!-- org.xerial.sqlite-jdbc.version>3.34.0</org.xerial.sqlite-jdbc.version -->
@@ -51,7 +57,6 @@
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
<org.bitbucket.b_c.jose4j.version>0.7.11</org.bitbucket.b_c.jose4j.version>
-
<!-- For software testing only -->
<json-path.version>2.6.0</json-path.version>
<jetty.version>9.4.44.v20210927</jetty.version>
@@ -96,6 +101,16 @@
</activation>
<repositories>
<repository>
+ <id>central</id>
+ <url>https://repo.maven.apache.org/maven2</url>
+ <releases>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
<id>egiz-commons</id>
<url>https://apps.egiz.gv.at/maven/</url>
<releases>
@@ -155,9 +170,14 @@
</dependency>
<dependency>
<groupId>at.gv.egiz.eaaf</groupId>
+ <artifactId>eaaf_module_pvp2_core</artifactId>
+ <version>${eaaf-core.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>at.gv.egiz.eaaf</groupId>
<artifactId>eaaf_module_pvp2_sp</artifactId>
<version>${eaaf-core.version}</version>
- </dependency>
+ </dependency>
<dependency>
<groupId>at.asitplus.eidas.ms_specific</groupId>
<artifactId>ms_specific_connector</artifactId>
@@ -243,7 +263,6 @@
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>
-
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
@@ -361,17 +380,37 @@
<version>${commons-collections4.version}</version>
</dependency>
<dependency>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-yaml</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
- <version>${jackson-datatype-jsr310.version}</version>
+ <version>${jackson.version}</version>
</dependency>
<dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.openapitools</groupId>
+ <artifactId>jackson-databind-nullable</artifactId>
+ <version>${jackson-databind-nullable.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.swagger.parser.v3</groupId>
+ <artifactId>swagger-parser</artifactId>
+ <version>${swagger-parser.version}</version>
+ </dependency>
+ <dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-modules-java8</artifactId>
<version>${jackson-datatype-jsr310.version}</version>
<type>pom</type>
- <scope>runtime</scope>
- </dependency>
+ <scope>runtime</scope>
+ </dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
@@ -407,7 +446,7 @@
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot-starter-web.version}</version>
<scope>test</scope>
- </dependency>
+ </dependency>
<dependency>
<groupId>com.github.skjolber</groupId>
<artifactId>mockito-soap-cxf</artifactId>
@@ -478,7 +517,7 @@
</dependency>
<dependency>
<groupId>at.gv.egiz.eaaf</groupId>
- <artifactId>eaaf_module_pvp2_sp</artifactId>
+ <artifactId>eaaf_module_pvp2_core</artifactId>
<version>${eaaf-core.version}</version>
<scope>test</scope>
<type>test-jar</type>
@@ -489,7 +528,14 @@
<version>${eaaf-core.version}</version>
<scope>test</scope>
<type>test-jar</type>
- </dependency>
+ </dependency>
+ <dependency>
+ <groupId>at.gv.egiz.eaaf</groupId>
+ <artifactId>eaaf_module_pvp2_sp</artifactId>
+ <version>${eaaf-core.version}</version>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
<dependency>
<groupId>at.asitplus.eidas.ms_specific</groupId>
<artifactId>core_common_lib</artifactId>
@@ -633,6 +679,11 @@
</executions>
</plugin>
+ <plugin>
+ <groupId>org.openapitools</groupId>
+ <artifactId>openapi-generator-maven-plugin</artifactId>
+ <version>${openapi-generator-maven-plugin.version}</version>
+ </plugin>
</plugins>
</pluginManagement>
@@ -652,7 +703,7 @@
</executions>
<configuration>
<excludedScopes>test</excludedScopes>
- <excludedGroups>iaik.*|MOA.spss.*</excludedGroups>
+ <excludedGroups>MOA.spss.*</excludedGroups>
</configuration>
</plugin>
@@ -754,7 +805,7 @@
</execution>
</executions>
<configuration>
- <linkXref>false</linkXref>
+ <linkXRef>false</linkXRef>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.8</targetJdk>
@@ -765,6 +816,7 @@
</rulesets>
<excludeRoots>
<excludeRoot>target/generated/cxf</excludeRoot>
+ <excludeRoot>target/generated/swagger</excludeRoot>
</excludeRoots>
</configuration>
</plugin>