Today some surefire Maven plugin have been updated by my IDE implicitly and no tests were longer executed. Took a while to understand that the JAR update was the update. I was able to solve it by explicitly updating the versions to the latest.
If someone runs into the same problems here are the versions, that worked in the pom.xml of the ODFDOM: <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.17</version> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> PS: I have changed several other things, therefore a patch is atm not so easy and I am close to a dead-line (again) and have to focus on that.. Best regards, Svante
