Advertisement
amigleon92

Untitled

Aug 10th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.11 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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>maxicarga-pg</artifactId>
  7. <groupId>py.com.personal.bc</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10.  
  11. <properties>
  12. <version.is-mybatis-utils>2.0.0</version.is-mybatis-utils>
  13. <version.mybatis>3.2.2</version.mybatis>
  14. <version.weld-se>2.2.9.Final</version.weld-se>
  15. <version.commons-validator>1.6</version.commons-validator>
  16. <version.jackson>2.4.3</version.jackson>
  17. <version.commons-net>3.6</version.commons-net>
  18. <version.slf4j>1.7.25</version.slf4j>
  19. <version.log4j>2.10.0</version.log4j>
  20. </properties>
  21.  
  22. <artifactId>maxicarga-pg-ejb</artifactId>
  23. <packaging>ejb</packaging>
  24. <name>maxicarga-pg-ejb - ejb</name>
  25.  
  26. <dependencies>
  27. <dependency>
  28. <groupId>py.com.personal.bc</groupId>
  29. <artifactId>is-common-utils</artifactId>
  30. <version>1.4.7</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.slf4j</groupId>
  35. <artifactId>slf4j-api</artifactId>
  36. <version>${version.slf4j}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.logging.log4j</groupId>
  40. <artifactId>log4j-slf4j-impl</artifactId>
  41. <version>${version.log4j}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. <artifactId>log4j-core</artifactId>
  46. <version>${version.log4j}</version>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-api</artifactId>
  52. <version>${version.log4j}</version>
  53. </dependency>
  54.  
  55.  
  56. <dependency>
  57. <groupId>py.com.personal.bc</groupId>
  58. <artifactId>maxicarga-pg-model</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>py.com.konecta</groupId>
  62. <artifactId>exceptions-commons</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>py.com.konecta</groupId>
  66. <artifactId>mybatis-commons-pg</artifactId>
  67. <version>1.1-SNAPSHOT</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>py.com.konecta</groupId>
  71. <artifactId>jee6-commons</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.jboss.spec.javax.ejb</groupId>
  75. <artifactId>jboss-ejb-api_3.1_spec</artifactId>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.validation</groupId>
  80. <artifactId>validation-api</artifactId>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.jboss.spec.javax.interceptor</groupId>
  85. <artifactId>jboss-interceptors-api_1.1_spec</artifactId>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>py.com.konecta</groupId>
  90. <artifactId>rest-api-commons</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax</groupId>
  94. <artifactId>javaee-api</artifactId>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.jcraft</groupId>
  99. <artifactId>jsch</artifactId>
  100. <version>0.1.53</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>xstream</groupId>
  104. <artifactId>xstream</artifactId>
  105. <version>1.1.3</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.codehaus.jackson</groupId>
  109. <artifactId>jackson-mapper-asl</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.httpcomponents</groupId>
  113. <artifactId>httpclient</artifactId>
  114. <version>4.5.1</version>
  115. </dependency>
  116. </dependencies>
  117.  
  118. <build>
  119. <finalName>${project.artifactId}</finalName>
  120. <!-- Plugin para empaquetar el ejb jar -->
  121. <plugins>
  122. <plugin>
  123. <artifactId>maven-ejb-plugin</artifactId>
  124. <version>${version.ejb.plugin}</version>
  125. <configuration>
  126. <!-- versión de EJB -->
  127. <ejbVersion>${version.javaee.ejb}</ejbVersion>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-javadoc-plugin</artifactId>
  133. <version>2.9</version>
  134. <executions>
  135. <execution>
  136. <id>attach-javadocs</id>
  137. <goals>
  138. <goal>jar</goal>
  139. </goals>
  140. <configuration>
  141. <failOnError>false</failOnError>
  142. </configuration>
  143. </execution>
  144. </executions>
  145. </plugin>
  146. </plugins>
  147. </build>
  148.  
  149. <profiles>
  150. <profile>
  151. <!-- The default profile skips all tests, though you can tune it to run
  152. just unit tests based on a custom pattern -->
  153. <!-- Seperate profiles are provided for running all tests, including Arquillian
  154. tests that execute in the specified container -->
  155. <id>default</id>
  156. <activation>
  157. <activeByDefault>true</activeByDefault>
  158. </activation>
  159. <build>
  160. <plugins>
  161. <plugin>
  162. <artifactId>maven-surefire-plugin</artifactId>
  163. <version>${version.surefire.plugin}</version>
  164. <configuration>
  165. <skip>true</skip>
  166. </configuration>
  167. </plugin>
  168. </plugins>
  169. </build>
  170. </profile>
  171.  
  172. <profile>
  173. <!-- An optional Arquillian testing profile that executes tests in your
  174. JBoss AS instance -->
  175. <!-- This profile will start a new JBoss AS instance, and execute the
  176. test, shutting it down when done -->
  177. <!-- Run with: mvn clean test -Parq-jbossas-managed -->
  178. <id>arq-jbossas-managed</id>
  179. <dependencies>
  180. <dependency>
  181. <groupId>org.jboss.as</groupId>
  182. <artifactId>jboss-as-arquillian-container-managed</artifactId>
  183. <scope>test</scope>
  184. </dependency>
  185. </dependencies>
  186. </profile>
  187.  
  188. <profile>
  189. <!-- An optional Arquillian testing profile that executes tests in a remote
  190. JBoss AS instance -->
  191. <!-- Run with: mvn clean test -Parq-jbossas-remote -->
  192. <id>arq-jbossas-remote</id>
  193. <dependencies>
  194. <dependency>
  195. <groupId>org.jboss.as</groupId>
  196. <artifactId>jboss-as-arquillian-container-remote</artifactId>
  197. <scope>test</scope>
  198. </dependency>
  199. </dependencies>
  200. </profile>
  201. </profiles>
  202.  
  203. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement