diff options
Diffstat (limited to 'org.eclipse.jgit.test/pom.xml')
-rw-r--r-- | org.eclipse.jgit.test/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/pom.xml b/org.eclipse.jgit.test/pom.xml index 51ac8463cc..539caff149 100644 --- a/org.eclipse.jgit.test/pom.xml +++ b/org.eclipse.jgit.test/pom.xml @@ -69,6 +69,16 @@ <scope>test</scope> </dependency> + <!-- Optional security provider for encryption tests. --> + <!-- See https://dev.eclipse.org/ipzilla/show_bug.cgi?id=9554 --> + <!-- See https://bugs.eclipse.org/bugs/show_bug.cgi?id=467064 --> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk15on</artifactId> + <version>1.52</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> @@ -101,6 +111,24 @@ </dependency> </dependencies> + <profiles> + <!-- Profile provides a property which enables long running tests. --> + <profile> + <id>test.long</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Djgit.test.long=true</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <sourceDirectory>src/</sourceDirectory> <testSourceDirectory>tst/</testSourceDirectory> |