Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <plugin>
  2. <groupId>br.com.ingenieux</groupId>
  3. <artifactId>beanstalk-maven-plugin</artifactId>
  4. <configuration>
  5. <applicationName>mapper</applicationName>
  6. <cnamePrefix>mapper</cnamePrefix>
  7. <solutionStack>32bit Amazon Linux running Tomcat 7</solutionStack>
  8. <environmentName>test</environmentName>
  9. <optionSettings>
  10. <optionSetting>
  11. <namespace>aws:elasticbeanstalk:application</namespace>
  12. <optionName>Application Healthcheck URL</optionName>
  13. <value>/_/health</value>
  14. </optionSetting>
  15. </optionSettings>
  16. </configuration>
  17. <executions>
  18. <execution>
  19. <id>default</id>
  20. <phase>verify</phase>
  21. <goals>
  22. <goal>upload-source-bundle</goal>
  23. <goal>restart-application-server</goal>
  24. </goals>
  25. </execution>
  26. </executions>
  27. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement