diff options
Diffstat (limited to 'connector/pom.xml')
-rw-r--r-- | connector/pom.xml | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/connector/pom.xml b/connector/pom.xml index a461ab79..9f1e6c50 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -9,19 +9,23 @@ <groupId>at.gv.egiz.eidas.ms_specific</groupId> <artifactId>ms_specific_connector</artifactId> - <packaging>war</packaging> <version>${egiz.eidas.version}</version> + <packaging>war</packaging> <name>Connector Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> - <!-- Web application --> + <!-- Web application --> - <dependency> + <dependency> <groupId>at.gv.egiz.components</groupId> <artifactId>egiz-spring-api</artifactId> </dependency> <dependency> + <groupId>at.gv.egiz.components</groupId> + <artifactId>eventlog-slf4j</artifactId> + </dependency> + <dependency> <groupId>at.gv.egiz.eaaf</groupId> <artifactId>eaaf-core</artifactId> </dependency> @@ -33,8 +37,16 @@ <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> - </exclusions> - </dependency> + </exclusions> + </dependency> + <dependency> + <groupId>at.gv.egiz.eidas.ms_specific</groupId> + <artifactId>connector_lib</artifactId> + </dependency> + <dependency> + <groupId>at.gv.egiz.eidas.ms_specific.modules</groupId> + <artifactId>authmodule-eIDAS-v2</artifactId> + </dependency> <!-- Third party libs --> <dependency> @@ -49,7 +61,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> - + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> + </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> @@ -63,6 +78,12 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> <finalName>ms_connector</finalName> @@ -82,7 +103,6 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <threadCount>1</threadCount> - <argLine>--add-modules java.xml.bind</argLine> </configuration> <dependencies> <dependency> |