Guest User

Untitled

a guest
Apr 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>projectCore</groupId>
  5. <artifactId>projectCore</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <build>
  8. <sourceDirectory>src</sourceDirectory>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <version>3.3</version>
  13. <configuration>
  14. <source>1.7</source>
  15. <target>1.7</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <packaging>pom</packaging>
  21. // dependencies
  22. </project>
  23.  
  24. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  25. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  26. <modelVersion>4.0.0</modelVersion>
  27. <groupId>projectWeb</groupId>
  28. <artifactId>projectWeb</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. <packaging>war</packaging>
  31. <build>
  32. <sourceDirectory>src</sourceDirectory>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.3</version>
  37. <configuration>
  38. <source>1.7</source>
  39. <target>1.7</target>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <artifactId>maven-war-plugin</artifactId>
  44. <version>2.6</version>
  45. <configuration>
  46. <warSourceDirectory>WebContent</warSourceDirectory>
  47. <failOnMissingWebXml>false</failOnMissingWebXml>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. //dependencies
  53. <project>
Add Comment
Please, Sign In to add comment