diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -11,6 +11,9 @@ <name>Javassist</name> <url>http://www.javassist.org/</url> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> <organization> <name>Shigeru Chiba, www.javassist.org</name> </organization> @@ -159,7 +162,7 @@ <include>javassist/JvstTest.java</include> </includes> <forkMode>once</forkMode> - <workingDirectory>runtest</workingDirectory> + <workingDirectory>${project.build.directory}/runtest</workingDirectory> </configuration> </plugin> <plugin> @@ -199,6 +202,7 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> + <version>3.3.0</version> <executions> <execution> <id>bundle-manifest</id> @@ -300,10 +304,16 @@ </profiles> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <version>1.3</version> + <scope>test</scope> </dependency> </dependencies> </project> |