diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2019-11-14 01:54:16 +0200 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2019-11-14 01:54:16 +0200 |
commit | a7bf2eb382c8a8be74f71bca1c44686929535114 (patch) | |
tree | d319a87adace39f54eee882a385d722083b441a6 /pf4j/pom.xml | |
parent | 4ba6bdc829341d1e1b545d37b613ba4ed3a7a5d8 (diff) | |
download | pf4j-a7bf2eb382c8a8be74f71bca1c44686929535114.tar.gz pf4j-a7bf2eb382c8a8be74f71bca1c44686929535114.zip |
Ad more tests in ExtensionAnnotationProcessorTest
Diffstat (limited to 'pf4j/pom.xml')
-rw-r--r-- | pf4j/pom.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pf4j/pom.xml b/pf4j/pom.xml index 22a7121..c24b30b 100644 --- a/pf4j/pom.xml +++ b/pf4j/pom.xml @@ -90,15 +90,15 @@ <optional>true</optional> </dependency> + <!-- Testing --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> - <dependency> - <!-- + <!-- An empty artifact, required while JUnit 4 is on the classpath to override its dependency on hamcrest. @@ -109,20 +109,24 @@ <version>${hamcrest.version}</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.google.testing.compile</groupId> + <artifactId>compile-testing</artifactId> + <version>0.18</version> + <scope>test</scope> + </dependency> </dependencies> </project> |