diff options
author | nickl- <github@jigsoft.co.za> | 2017-10-26 00:33:39 +0200 |
---|---|---|
committer | nickl- <github@jigsoft.co.za> | 2017-10-27 17:40:48 +0200 |
commit | ce84f84a174b279ee3e8a38446ea3a1f23bf8287 (patch) | |
tree | 84c9d3258afa98cafe34c57dccc9a7c946d0e92a /pom.xml | |
parent | 7ef0947b75ed935d45923cb00a93a52717c7c6ed (diff) | |
download | javassist-ce84f84a174b279ee3e8a38446ea3a1f23bf8287.tar.gz javassist-ce84f84a174b279ee3e8a38446ea3a1f23bf8287.zip |
Upgrade junit from ver 3 to 4.
There were minimal changes:
Some tests had their own runners these were discontinued as IDEs/maven run the tests anyway.
Removed the main methods for these.
2 tests were dependent on the running order so added the test sorter.
All tests succeed on junit 4 with legacy support.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -304,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> |