Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.81 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <groupId>our.package</groupId>
  4. <artifactId>package-impl</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <type>jar</type>
  7. <scope>runtime</scope>
  8. </dependency>
  9. </dependencies>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-ear-plugin</artifactId>
  15. <version>${maven.ear.plugin.version}</version>
  16. <configuration>
  17. <version>5</version>
  18. <generateApplicationXml>false</generateApplicationXml>
  19. <defaultLibBundleDir>lib</defaultLibBundleDir>
  20. <modules>
  21. <webModule>
  22. <groupId>de.project</groupId>
  23. <artifactId>project.war</artifactId>
  24. <bundleDir>/</bundleDir>
  25. <bundleFileName>project.war</bundleFileName>
  26. <contextRoot>project</contextRoot>
  27. </webModule>
  28. </modules>
  29. </configuration>
  30. </plugin>
  31. </plugins>
  32. </build>
  33.  
  34. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  35. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  36. <modelVersion>4.0.0</modelVersion>
  37. <artifactId>project-impl</artifactId>
  38. <parent>
  39. <groupId>de.company</groupId>
  40. <artifactId>project</artifactId>
  41. <version>0.0.1-SNAPSHOT</version>
  42. <relativePath>../project</relativePath>
  43. </parent>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.jboss.spec</groupId>
  47. <artifactId>jboss-javaee-6.0</artifactId>
  48. <version>${jee6.version}</version>
  49. <type>pom</type>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.hibernate.javax.persistence</groupId>
  54. <artifactId>hibernate-jpa-2.0-api</artifactId>
  55. <version>${hibernate.jpa-api.version}</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.jboss</groupId>
  60. <artifactId>jboss-vfs</artifactId>
  61. <version>${jboss-vfs.version}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-lang</groupId>
  66. <artifactId>commons-lang</artifactId>
  67. <version>${commons-lang.version}</version>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>dom4j</groupId>
  72. <artifactId>dom4j</artifactId>
  73. <version>${dom4j.version}</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>javax.faces</groupId>
  78. <artifactId>jsf-api</artifactId>
  79. <version>${jsf-api.version}</version>
  80. <scope>provided</scope>
  81. </dependency>
  82.  
  83. <!-- depenencies on third party modules -->
  84. <dependency>
  85. <groupId>org.jboss.solder</groupId>
  86. <artifactId>solder-impl</artifactId>
  87. <version>${jboss.solder.solder-impl.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.jboss.seam.persistence</groupId>
  91. <artifactId>seam-persistence</artifactId>
  92. <version>${org.jboss.seam-persistence.version}</version>
  93. <exclusions>
  94. <!-- already provided by jboss as -->
  95. <exclusion>
  96. <groupId>org.jboss.spec.javax.servlet</groupId>
  97. <artifactId>jboss-servlet-api_3.0_spec</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.richfaces.core</groupId>
  103. <artifactId>richfaces-core-impl</artifactId>
  104. <version>${jboss.richfaces.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.richfaces.ui</groupId>
  108. <artifactId>richfaces-components-ui</artifactId>
  109. <version>${jboss.richfaces.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.reflections</groupId>
  113. <artifactId>reflections</artifactId>
  114. <version>${org.reflections.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.jboss.arquillian</groupId>
  118. <artifactId>arquillian-bom</artifactId>
  119. <version>1.0.0.Final</version>
  120. <scope>import</scope>
  121. <type>pom</type>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.jboss.arquillian.junit</groupId>
  125. <artifactId>arquillian-junit-container</artifactId>
  126. <version>1.0.0.Final</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.jboss.arquillian.container</groupId>
  131. <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
  132. <version>1.0.0.CR3</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.jboss.weld</groupId>
  137. <artifactId>weld-core</artifactId>
  138. <version>1.1.5.Final</version>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.slf4j</groupId>
  143. <artifactId>slf4j-simple</artifactId>
  144. <version>1.6.4</version>
  145. <scope>test</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>junit</groupId>
  149. <artifactId>junit</artifactId>
  150. <version>4.8.1</version>
  151. <scope>test</scope>
  152. </dependency>
  153. </dependencies>
  154. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement