On 07/09/2015 11:08, Marcel Reutegger wrote: > ... > I would like to revert this change and run tests again > with the pedantic profile. This ensures we check the release > as documented in the README.md where users are instructed > to run 'mvn clean install' or 'mvn clean install -PintegrationTesting'. >
+1 We currently have a conf property in parent/pom.xml: surefire.skip.ut (default false). https://github.com/apache/jackrabbit-oak/blob/trunk/oak-parent/pom.xml#L72 You could reuse it, as we use it in jenkins and travis for having a profile with unit test, and one with integrationTesting by having the latter not re-running the unit test again. If you want to change the property name, feel free to do so but you'll have to change it in travis and jenkins as well. Davide
