Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <groupId>org.hibernate</groupId>
  4. <artifactId>hibernate-core</artifactId>
  5. <version>5.0.0.Final</version>
  6. <type>jar</type>
  7. </dependency>
  8. <dependency>
  9. <groupId>org.primefaces</groupId>
  10. <artifactId>primefaces</artifactId>
  11. <version>6.0</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.hibernate</groupId>
  15. <artifactId>hibernate-entitymanager</artifactId>
  16. <version>4.3.1.Final</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. <version>5.1.40</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.fasterxml.jackson.core</groupId>
  25. <artifactId>jackson-databind</artifactId>
  26. <version>2.8.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.core</groupId>
  30. <artifactId>jackson-annotations</artifactId>
  31. <version>2.8.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax</groupId>
  35. <artifactId>javaee-web-api</artifactId>
  36. <version>7.0</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40.  
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.1</version>
  47. <configuration>
  48. <source>1.7</source>
  49. <target>1.7</target>
  50. <compilerArguments>
  51. <endorseddirs>${endorsed.dir}</endorseddirs>
  52. </compilerArguments>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-war-plugin</artifactId>
  58. <version>2.3</version>
  59. <configuration>
  60. <failOnMissingWebXml>false</failOnMissingWebXml>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-dependency-plugin</artifactId>
  66. <version>2.6</version>
  67. <executions>
  68. <execution>
  69. <phase>validate</phase>
  70. <goals>
  71. <goal>copy</goal>
  72. </goals>
  73. <configuration>
  74. <outputDirectory>${endorsed.dir}</outputDirectory>
  75. <silent>true</silent>
  76. <artifactItems>
  77. <artifactItem>
  78. <groupId>javax</groupId>
  79. <artifactId>javaee-endorsed-api</artifactId>
  80. <version>7.0</version>
  81. <type>jar</type>
  82. </artifactItem>
  83. </artifactItems>
  84. </configuration>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. </plugins>
  89. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement