Advertisement
Guest User

Untitled

a guest
Mar 28th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>org.quickdemo</groupId>
  5. <artifactId>quickdemo</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. <build>
  8. <finalName>quickdemo</finalName>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-war-plugin</artifactId>
  12. <version>2.6</version>
  13. <configuration>
  14. <failOnMissingWebXml>false</failOnMissingWebXml>
  15. </configuration>
  16. </plugin>
  17. <plugin>
  18. <groupId>org.bsc.maven</groupId>
  19. <artifactId>maven-processor-plugin</artifactId>
  20. <version>3.1.0</version>
  21. <executions>
  22. <execution>
  23. <id>process</id>
  24. <phase>generate-sources</phase>
  25. <goals>
  26. <goal>process</goal>
  27. </goals>
  28. <configuration>
  29. <processors>
  30. <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
  31. </processors>
  32. </configuration>
  33. </execution>
  34. </executions>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.hibernate</groupId>
  38. <artifactId>hibernate-jpamodelgen</artifactId>
  39. <version>5.1.0.Final</version>
  40. </dependency>
  41. </dependencies>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <configuration>
  46. <proc>none</proc>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <packaging>war</packaging>
  52. <properties>
  53. <maven.compiler.source>1.8</maven.compiler.source>
  54. <maven.compiler.target>1.8</maven.compiler.target>
  55. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  56. </properties>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.jboss.spec</groupId>
  61. <artifactId>jboss-javaee-6.0</artifactId>
  62. <version>3.0.3.Final</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.annotation</groupId>
  68. <artifactId>jsr250-api</artifactId>
  69. <version>1.0</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. </dependencies>
  73. </dependencyManagement>
  74. <dependencies>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>5.1.6</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.hibernate.javax.persistence</groupId>
  82. <artifactId>hibernate-jpa-2.0-api</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>javax.validation</groupId>
  87. <artifactId>validation-api</artifactId>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.enterprise</groupId>
  92. <artifactId>cdi-api</artifactId>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>javax.annotation</groupId>
  97. <artifactId>jsr250-api</artifactId>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.jboss.spec.javax.ejb</groupId>
  102. <artifactId>jboss-ejb-api_3.1_spec</artifactId>
  103. <scope>provided</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.jboss.spec.javax.servlet</groupId>
  107. <artifactId>jboss-servlet-api_3.0_spec</artifactId>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.jboss.spec.javax.faces</groupId>
  112. <artifactId>jboss-jsf-api_2.1_spec</artifactId>
  113. <scope>provided</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.jboss.spec.javax.ws.rs</groupId>
  117. <artifactId>jboss-jaxrs-api_1.1_spec</artifactId>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.hibernate</groupId>
  122. <artifactId>hibernate-jpamodelgen</artifactId>
  123. <version>5.1.0.Final</version>
  124. <scope>provided</scope>
  125. </dependency>
  126. </dependencies>
  127. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement