Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>pe.com.cxpress</groupId>
  6. <artifactId>cxpress</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9.  
  10. <name>parent-project</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <modules>
  14. <module>../cxpress-core</module>
  15. <module>../cxpress-web</module>
  16. <module>../cxpress-web-ear</module>
  17. </modules>
  18.  
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <version.ear.plugin>2.6</version.ear.plugin>
  22. <version.surefire.plugin>2.10</version.surefire.plugin>
  23. <version.war.plugin>2.1.1</version.war.plugin>
  24. <maven.compiler.target>1.7</maven.compiler.target>
  25. <maven.compiler.source>1.7</maven.compiler.source>
  26. <!-- version de spring -->
  27. <spring.version>4.2.1.RELEASE</spring.version>
  28. <!-- version de mybatis -->
  29. <mybatis.version>3.3.0</mybatis.version>
  30. <mybatis.spring.version>1.2.3</mybatis.spring.version>
  31. <!-- Thymeleaf -->
  32. <thymeleaf.version>2.1.4.RELEASE</thymeleaf.version>
  33. <version.wildfly.maven.plugin>1.0.2.Final</version.wildfly.maven.plugin>
  34. <version.jboss.bom>10.0.0.Final</version.jboss.bom>
  35. <!-- servicios cxf -->
  36. <cxf.version>3.0.1</cxf.version>
  37. <cxf.plugin.version>3.0.0</cxf.plugin.version>
  38. <slf4j.version>1.7.2</slf4j.version>
  39. <jaxb.version>2.2</jaxb.version>
  40. <!-- version javax mail -->
  41. <javax.mail.version>1.6.1</javax.mail.version>
  42. <!-- version axis 1.4 -->
  43. <apache.axis.version>1.4</apache.axis.version>
  44. </properties>
  45.  
  46.  
  47. <dependencyManagement>
  48. <dependencies>
  49. <!-- Define the version of the EJB jar so that we don't need
  50. to repeat ourselves in every module -->
  51. <dependency>
  52. <groupId>pe.com.cxpress</groupId>
  53. <artifactId>cxpress-core</artifactId>
  54. <version>${project.version}</version>
  55. <type>jar</type>
  56. <scope>compile</scope>
  57. </dependency>
  58. <!-- Define the version of the WAR so that we don't need to repeat ourselves in every module -->
  59. <dependency>
  60. <groupId>pe.com.cxpress</groupId>
  61. <artifactId>cxpress-web</artifactId>
  62. <version>${project.version}</version>
  63. <type>war</type>
  64. <scope>compile</scope>
  65. </dependency>
  66.  
  67. <dependency>
  68. <groupId>org.wildfly.bom</groupId>
  69. <artifactId>wildfly-javaee7-with-tools</artifactId>
  70. <version>${version.jboss.bom}</version>
  71. <type>pom</type>
  72. <scope>import</scope>
  73. </dependency>
  74.  
  75. </dependencies>
  76. </dependencyManagement>
  77. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement