diff options
author | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-02-06 11:09:59 +0100 |
---|---|---|
committer | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-02-06 11:09:59 +0100 |
commit | 271e22add71f0260f5d421844a2171a09093f505 (patch) | |
tree | 991b167c7fb101beef613675d4256ac00d14842e /id/server/idserverlib/pom.xml | |
parent | c1af54026407f7150d2a61d15e9719ae878c7375 (diff) | |
download | moa-id-spss-271e22add71f0260f5d421844a2171a09093f505.tar.gz moa-id-spss-271e22add71f0260f5d421844a2171a09093f505.tar.bz2 moa-id-spss-271e22add71f0260f5d421844a2171a09093f505.zip |
Code cleanup
- Set moa-id version to 2.2.0-SNAPSHOT.
- Fix Javadoc syntax issues in newly added classes.
- Add warning log when executing deprecated auth sources.
Diffstat (limited to 'id/server/idserverlib/pom.xml')
-rw-r--r-- | id/server/idserverlib/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index c0021f25e..8045ed8da 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -26,6 +26,13 @@ </repositories>
<dependencies>
+ <!-- TestNG -->
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>6.1.1</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>eu.stork</groupId>
<artifactId>oasis-dss-api</artifactId>
@@ -549,6 +556,27 @@ </executions>
</plugin>
+ <!-- enable co-existence of testng and junit -->
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>${surefire.version}</version>
+ <configuration>
+ <threadCount>1</threadCount>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.surefire</groupId>
+ <artifactId>surefire-junit47</artifactId>
+ <version>${surefire.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven.surefire</groupId>
+ <artifactId>surefire-testng</artifactId>
+ <version>${surefire.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
</plugins>
</build>
|