PageRenderTime 62ms CodeModel.GetById 37ms RepoModel.GetById 1ms app.codeStats 0ms

/jboss-as-7.1.1.Final/ejb3/pom.xml

#
XML | 209 lines | 146 code | 25 blank | 38 comment | 0 complexity | cb6849886abc1b54953d02fb58a41755 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. vi:ts=4:sw=4:expandtab
  4. -->
  5. <!--
  6. ~ JBoss, Home of Professional Open Source.
  7. ~ Copyright (c) 2011, Red Hat, Inc., and individual contributors
  8. ~ as indicated by the @author tags. See the copyright.txt file in the
  9. ~ distribution for a full listing of individual contributors.
  10. ~
  11. ~ This is free software; you can redistribute it and/or modify it
  12. ~ under the terms of the GNU Lesser General Public License as
  13. ~ published by the Free Software Foundation; either version 2.1 of
  14. ~ the License, or (at your option) any later version.
  15. ~
  16. ~ This software is distributed in the hope that it will be useful,
  17. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. ~ Lesser General Public License for more details.
  20. ~
  21. ~ You should have received a copy of the GNU Lesser General Public
  22. ~ License along with this software; if not, write to the Free
  23. ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  24. ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  25. -->
  26. <project xmlns="http://maven.apache.org/POM/4.0.0"
  27. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  28. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  29. <modelVersion>4.0.0</modelVersion>
  30. <parent>
  31. <groupId>org.jboss.as</groupId>
  32. <artifactId>jboss-as-parent</artifactId>
  33. <version>7.1.1.Final</version>
  34. </parent>
  35. <artifactId>jboss-as-ejb3</artifactId>
  36. <name>JBoss Application Server: EJB Subsystem</name>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <configuration>
  43. <compilerArgument>
  44. -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
  45. </compilerArgument>
  46. <excludes>
  47. <exclude>**/*IIOP*.java</exclude>
  48. <exclude>**/*iiop*/*.java</exclude>
  49. <exclude>org/jboss/as/ejb3/deployment/processors/*IIOP*.java</exclude>
  50. <exclude>org/jboss/as/ejb3/iiop/**/*.java</exclude>
  51. </excludes>
  52. <verbose>true</verbose>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-surefire-plugin</artifactId>
  58. <configuration>
  59. <includes>
  60. <include>org/jboss/as/ejb3/**/*TestCase.java</include>
  61. </includes>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. <dependencies>
  67. <dependency>
  68. <groupId>${project.groupId}</groupId>
  69. <artifactId>jboss-as-connector</artifactId>
  70. </dependency>
  71. <!--
  72. <dependency>
  73. <groupId>${project.groupId}</groupId>
  74. <artifactId>jboss-as-domain</artifactId>
  75. </dependency>
  76. -->
  77. <dependency>
  78. <groupId>${project.groupId}</groupId>
  79. <artifactId>jboss-as-controller</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>${project.groupId}</groupId>
  83. <artifactId>jboss-as-clustering-api</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>${project.groupId}</groupId>
  87. <artifactId>jboss-as-clustering-registry</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>${project.groupId}</groupId>
  91. <artifactId>jboss-as-ee</artifactId>
  92. </dependency>
  93. <!--
  94. <dependency>
  95. <groupId>${project.groupId}</groupId>
  96. <artifactId>jboss-as-jacorb</artifactId>
  97. </dependency>
  98. -->
  99. <dependency>
  100. <groupId>${project.groupId}</groupId>
  101. <artifactId>jboss-as-security</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>${project.groupId}</groupId>
  105. <artifactId>jboss-as-transactions</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.hibernate.javax.persistence</groupId>
  109. <artifactId>hibernate-jpa-2.0-api</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.jboss</groupId>
  113. <artifactId>jboss-common-core</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.jboss.classfilewriter</groupId>
  117. <artifactId>jboss-classfilewriter</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.jboss</groupId>
  121. <artifactId>jboss-ejb-client</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.jboss</groupId>
  125. <artifactId>jboss-iiop-client</artifactId>
  126. <version>${version.org.jboss.iiop-client}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.jboss.logging</groupId>
  130. <artifactId>jboss-logging</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.jboss.logging</groupId>
  134. <artifactId>jboss-logging-processor</artifactId>
  135. <!-- This is a compile-time dependency of this project, but is not needed at compile or runtime by other
  136. projects that depend on this project.-->
  137. <scope>provided</scope>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.jboss.metadata</groupId>
  142. <artifactId>jboss-metadata-ejb</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.jboss.ejb3</groupId>
  146. <artifactId>jboss-ejb3-ext-api</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.jboss.marshalling</groupId>
  150. <artifactId>jboss-marshalling</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.jboss.marshalling</groupId>
  154. <artifactId>jboss-marshalling-river</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.jboss.spec.javax.ejb</groupId>
  158. <artifactId>jboss-ejb-api_3.1_spec</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.jboss.spec.javax.jms</groupId>
  162. <artifactId>jboss-jms-api_1.1_spec</artifactId>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.jboss.spec.javax.xml.rpc</groupId>
  166. <artifactId>jboss-jaxrpc-api_1.1_spec</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.mockito</groupId>
  170. <artifactId>mockito-all</artifactId>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>junit</groupId>
  175. <artifactId>junit</artifactId>
  176. <scope>test</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.jboss.as</groupId>
  180. <artifactId>jboss-as-subsystem-test</artifactId>
  181. <scope>test</scope>
  182. </dependency>
  183. </dependencies>
  184. </project>