Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.me.test</groupId>
  4. <artifactId>demo</artifactId>
  5. <version>1.0</version>
  6. ..
  7. ..
  8. <profiles>
  9. <profile>
  10. <id>with-scm</id>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.codehaus.mojo</groupId>
  15. <artifactId>buildnumber-maven-plugin</artifactId>
  16. <version>1.0</version>
  17. <executions>
  18. <execution>
  19. <phase>validate</phase>
  20. <goals>
  21. <goal>create</goal>
  22. </goals>
  23. </execution>
  24. </executions>
  25. <configuration>
  26. <doCheck>true</doCheck>
  27. <doUpdate>true</doUpdate>
  28. </configuration>
  29. </plugin>
  30. </plugins>
  31. </build>
  32. </profile>
  33. </profiles>
  34. </project>
  35.  
  36. mvn -Pwith-scm package
  37.  
  38. <project>
  39. ..
  40. <properties>
  41. <buildnumber.plugin.phase>validate</buildnumber.plugin.phase>
  42. ..
  43. </properties>
  44. ..
  45. <plugins>
  46. <plugin>
  47. <groupId>org.codehaus.mojo</groupId>
  48. <artifactId>buildnumber-maven-plugin</artifactId>
  49. <version>1.2</version>
  50. <executions>
  51. <execution>
  52. <phase>${buildnumber.plugin.phase}</phase>
  53. <goals>
  54. <goal>create</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. <configuration>
  59. ..
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. ..
  64. </project>
  65.  
  66. mvn install -Dbuildnumber.plugin.phase=none
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement