Advertisement
Guest User

sahin

a guest
Nov 25th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <profiles>
  3. <profile>
  4. <!-- When built in OpenShift the 'openshift' profile will be used when
  5. invoking mvn. -->
  6. <!-- Use this profile for any OpenShift specific customization your app
  7. will need. -->
  8. <!-- By default that is to put the resulting archive into the 'webapps'
  9. folder. -->
  10. <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
  11. <id>openshift</id>
  12. <build>
  13. <finalName>cnect</finalName>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-war-plugin</artifactId>
  17. <version>2.1.1</version>
  18. <configuration>
  19. <outputDirectory>webapps</outputDirectory>
  20. <warName>ROOT</warName>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. </profile>
  26. </profiles>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement