Guest User

Untitled

a guest
Dec 14th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.59 KB | None | 0 0
  1. <properties>
  2. <ejb-definitions-transactional-services.version>1.0.0</ejb-definitions-transactional-services.version>
  3. <ejb-definitions-transactional-data.version>1.0.0</ejb-definitions-transactional-data.version>
  4. <resteasy-version>3.0.6.Final</resteasy-version>
  5. <junit-version>4.12</junit-version>
  6. <slf4j-simple.version>1.6.4</slf4j-simple.version>
  7. <integracion-mensajeria-SEMPRE.version>2.2.4</integracion-mensajeria-SEMPRE.version>
  8. <web-core.version>1.0.5-SNAPSHOT</web-core.version>
  9. <jackson.version>2.7.5</jackson.version>
  10. <hibernate-core-version>4.3.7.Final</hibernate-core-version>
  11. <dal-core.version>0.0.8</dal-core.version>
  12. <joda-time.version>2.5</joda-time.version>
  13. <common-data-object.version>1.2.1</common-data-object.version>
  14. <data-access-layer-version>1.0.3</data-access-layer-version>
  15. <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
  16. <maven-resources-plugin.version>2.5</maven-resources-plugin.version>
  17. <maven-jxr-plugin.version>2.3</maven-jxr-plugin.version>
  18. <maven-source-plugin.version>2.4</maven-source-plugin.version>
  19. <maven-surefire-plugin.version>2.17</maven-surefire-plugin.version>
  20. <maven-war-plugin.version>2.4</maven-war-plugin.version>
  21. <maven-eclipse-plugin.version>2.9</maven-eclipse-plugin.version>
  22. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <ejb-definitions-view-data.version>1.0.0</ejb-definitions-view-data.version>
  25. </properties>
  26.  
  27. <dependencies>
  28.  
  29. <dependency>
  30. <groupId>org.jboss.resteasy</groupId>
  31. <artifactId>resteasy-jaxrs</artifactId>
  32. <version>${resteasy-version}</version>
  33. <scope>provided</scope>
  34. </dependency>
  35.  
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>${junit-version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42.  
  43. <dependency>
  44. <groupId>org.hibernate</groupId>
  45. <artifactId>hibernate-core</artifactId>
  46. <version>${hibernate-core-version}</version>
  47. </dependency>
  48.  
  49. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  50. <dependency>
  51. <groupId>com.fasterxml.jackson.core</groupId>
  52. <artifactId>jackson-core</artifactId>
  53. <version>2.8.3</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-mapper-asl -->
  56. <dependency>
  57. <groupId>org.codehaus.jackson</groupId>
  58. <artifactId>jackson-mapper-asl</artifactId>
  59. <version>1.9.13</version>
  60. </dependency>
  61.  
  62. <dependency>
  63. <groupId>org.reflections</groupId>
  64. <artifactId>reflections</artifactId>
  65. <version>0.9.10</version>
  66. </dependency>
  67.  
  68. </dependencies>
  69.  
  70.  
  71. <build>
  72. <finalName></finalName>
  73.  
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.5.1</version>
  79. <configuration>
  80. <!-- or whatever version you use -->
  81. <source>1.8</source>
  82. <target>1.8</target>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-resources-plugin</artifactId>
  88. <version>${maven-resources-plugin.version}</version>
  89. <configuration>
  90. <encoding>${project.build.sourceEncoding}</encoding>
  91. </configuration>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-eclipse-plugin</artifactId>
  96. <version>${maven-eclipse-plugin.version}</version>
  97. <configuration>
  98. <downloadSources>true</downloadSources>
  99. <downloadJavadocs>true</downloadJavadocs>
  100. <wtpversion>2.0</wtpversion>
  101. </configuration>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-war-plugin</artifactId>
  106. <version>${maven-war-plugin.version}</version>
  107. <configuration>
  108. <webXml>${webXmlPath}</webXml>
  109. </configuration>
  110. </plugin>
  111. </plugins>
  112.  
  113. </build>
  114.  
  115. <profiles>
  116. <profile>
  117. <id>default</id>
  118. <activation>
  119. <activeByDefault>true</activeByDefault>
  120. </activation>
  121. <properties>
  122. <webXmlPath>src/main/webapp/WEB-INF/web.xml</webXmlPath>
  123. </properties>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.codehaus.cargo</groupId>
  128. <artifactId>cargo-maven2-plugin</artifactId>
  129. <version>1.4.18</version>
  130. <configuration>
  131. <container>
  132. <containerId>wildfly8x</containerId>
  133. <type>remote</type>
  134. <timeout>600000</timeout>
  135. </container>
  136. <configuration>
  137. <type>runtime</type>
  138. <properties>
  139. <cargo.hostname>localhost</cargo.hostname>
  140. <cargo.jboss.management.port>********</cargo.jboss.management.port>
  141. <cargo.remote.username>*********</cargo.remote.username>
  142. <cargo.remote.password>*********</cargo.remote.password>
  143. </properties>
  144. </configuration>
  145. </configuration>
  146. <executions>
  147. <execution>
  148. <phase>install</phase>
  149. <goals>
  150. <goal>redeploy</goal>
  151. </goals>
  152. </execution>
  153. </executions>
  154. <dependencies>
  155. <dependency>
  156. <groupId>org.wildfly</groupId>
  157. <artifactId>wildfly-controller-client</artifactId>
  158. <version>8.2.1.Final</version>
  159. </dependency>
  160. </dependencies>
  161. </plugin>
  162. </plugins>
  163. </build>
  164. </profile>
  165. <profile>
  166. <id>local</id>
  167. <activation>
  168. <activeByDefault>false</activeByDefault>
  169. </activation>
  170. <properties>
  171. <webXmlPath>src/main/webapp/WEB-INF/web.xml</webXmlPath>
  172. </properties>
  173. </profile>
  174. </profiles>
Add Comment
Please, Sign In to add comment