aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 15 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 06d1f6da..da422283 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>