diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-01-17 12:19:26 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-01-17 12:19:26 +0100 |
commit | 869a07573fb6295174fd57aced1ba888f3015910 (patch) | |
tree | 1daf83a4c35499cffd425deb85704c077a265d91 /id | |
parent | 8b1813ea228048b6795c4a1c09b05480d5a59cb4 (diff) | |
download | moa-id-spss-869a07573fb6295174fd57aced1ba888f3015910.tar.gz moa-id-spss-869a07573fb6295174fd57aced1ba888f3015910.tar.bz2 moa-id-spss-869a07573fb6295174fd57aced1ba888f3015910.zip |
update third party libs
Diffstat (limited to 'id')
-rw-r--r-- | id/moa-spss-container/pom.xml | 22 | ||||
-rw-r--r-- | id/server/auth-edu/pom.xml | 12 | ||||
-rw-r--r-- | id/server/idserverlib/pom.xml | 22 |
3 files changed, 41 insertions, 15 deletions
diff --git a/id/moa-spss-container/pom.xml b/id/moa-spss-container/pom.xml index c69990361..d66a09621 100644 --- a/id/moa-spss-container/pom.xml +++ b/id/moa-spss-container/pom.xml @@ -107,7 +107,7 @@ <dependency> <groupId>iaik.prod</groupId> <artifactId>iaik_jce_full</artifactId> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>iaik.prod</groupId> @@ -185,23 +185,27 @@ <optional>true</optional> </dependency> + + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> - <version>2.2.11</version> - </dependency> - + <version>${jaxb.version}</version> + </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> - <version>2.2.11</version> + <version>${jaxb.version}</version> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>xalan</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> <exclusions> <exclusion> <artifactId>serializer</artifactId> @@ -213,19 +217,19 @@ <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>xml-apis</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>serializer</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> </dependencies> diff --git a/id/server/auth-edu/pom.xml b/id/server/auth-edu/pom.xml index b8bdad311..3c400a635 100644 --- a/id/server/auth-edu/pom.xml +++ b/id/server/auth-edu/pom.xml @@ -220,7 +220,7 @@ <groupId>iaik.prod</groupId> <artifactId>iaik_jce_full</artifactId> <!-- should be in the ext directory of the jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <!-- <dependency> <groupId>iaik.prod</groupId> @@ -238,13 +238,13 @@ <groupId>iaik.prod</groupId> <artifactId>iaik_Pkcs11Wrapper</artifactId> <!-- should be in the ext directory of the jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>xalan</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> <exclusions> <exclusion> <groupId>xalan</groupId> @@ -256,19 +256,19 @@ <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>xml-apis</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>xalan-bin-dist</groupId> <artifactId>serializer</artifactId> <!-- should be provided by the container or jre --> - <scope>provided</scope> + <!-- <scope>provided</scope> --> </dependency> <dependency> diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index 7652af302..f859b6a45 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -33,6 +33,27 @@ <version>6.9.10</version>
<scope>test</scope>
</dependency>
+
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>javax.annotation-api</artifactId>
+ <version>1.2</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>javax.transaction-api</artifactId>
+ <version>1.2</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>com.google.guava</groupId>
@@ -534,6 +555,7 @@ <version>${surefire.version}</version>
<configuration>
<threadCount>1</threadCount>
+ <argLine>--add-modules java.xml.bind</argLine>
</configuration>
<dependencies>
<dependency>
|