Advertisement
mrk1989

maven->pom

Jun 26th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <artifactId>maven-compiler-plugin</artifactId>
  5. <version>3.1</version>
  6. <configuration>
  7. <source>1.8</source>
  8. <target>1.8</target>
  9. </configuration>
  10. </plugin>
  11. <plugin>
  12. <artifactId>maven-war-plugin</artifactId>
  13. <version>2.4</version>
  14. <configuration>
  15. <warSourceDirectory>WebContent</warSourceDirectory>
  16. <failOnMissingWebXml>false</failOnMissingWebXml>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement