Guest User

Untitled

a guest
Nov 14th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. mvn -B -DskipITs release:prepare release:perform
  2.  
  3. <profiles>
  4. <profile>
  5. <id>ItsReleaseTime</id>
  6. <build>
  7. <plugins>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.apache.maven.plugins</groupId>
  12. <artifactId>maven-surefire-plugin</artifactId>
  13. <version>2.20</version>
  14. <configuration>
  15. <excludes>
  16. <exclude>**/*IT.java</exclude>
  17. </excludes>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. </profile>
  23. </profiles>
  24.  
  25. mvn -B -P ItsReleaseTime release:prepare release:perform
  26.  
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-surefire-plugin</artifactId>
  30. <version>2.12.4</version>
  31. <configuration>
  32. <skipTests>true</skipTests>
  33. </configuration>
  34. </plugin>
Add Comment
Please, Sign In to add comment