Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <plugin>
  2. <groupId>com.google.code.maven-replacer-plugin</groupId>
  3. <artifactId>replacer</artifactId>
  4. <version>1.5.2</version>
  5. <executions>
  6. <execution>
  7. <phase>process-sources</phase>
  8. <goals>
  9. <goal>replace</goal>
  10. </goals>
  11. </execution>
  12. </executions>
  13. <configuration>
  14. <filesToInclude>**/src/*</filesToInclude>
  15. <replacements>
  16. <replacement>
  17. <token>DevBuild</token>
  18. <value>${buildnumber}</value>
  19. </replacement>
  20. <replacement>
  21. <token>$${buildnumber}</token>
  22. <value>${buildnumber}</value>
  23. </replacement>
  24. </replacements>
  25. </configuration>
  26. <inherited>false</inherited>
  27. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement