pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.usoftchina</groupId>
  6. <artifactId>usoftchina-cms</artifactId>
  7. <version>1.0</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>jpress-web</module>
  11. <module>jpress-oauth2</module>
  12. <module>jpress-message</module>
  13. <module>jpress-search-api</module>
  14. <module>jpress-search-dbsimple</module>
  15. <module>jpress-addon-helloworld</module>
  16. <module>jpress-model</module>
  17. <module>jpress-commons</module>
  18. <module>jpress-web-template-mallcms</module>
  19. <module>jpress-web-core</module>
  20. <module>jpress-web-admin</module>
  21. <module>jpress-web-front</module>
  22. <module>jpress-cache</module>
  23. </modules>
  24. <properties>
  25. <jdk.version>1.7</jdk.version>
  26. <servlet.api.version>3.0.1</servlet.api.version>
  27. <junit.version>4.11</junit.version>
  28. <mysql.version>5.1.21</mysql.version>
  29. <jfinal.version>2.2</jfinal.version>
  30. <jfinal.weixin.version>1.7</jfinal.weixin.version>
  31. <druid.version>1.0.22</druid.version>
  32. <ehcache.version>2.10.2.2.21</ehcache.version>
  33. <fastjson.version>1.2.12</fastjson.version>
  34. <freemarker.version>2.3.28</freemarker.version>
  35. <javax.mail.version>1.5.5</javax.mail.version>
  36. <jsoup.version>1.9.2</jsoup.version>
  37. <slf4j-api.version>1.7.21</slf4j-api.version>
  38. <slf4j-log4j12.version>1.7.21</slf4j-log4j12.version>
  39. <log4j.version>1.2.17</log4j.version>
  40. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-api</artifactId>
  47. <version>${slf4j-api.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-log4j12</artifactId>
  52. <version>${slf4j-log4j12.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>log4j</groupId>
  56. <artifactId>log4j</artifactId>
  57. <version>${log4j.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.jsoup</groupId>
  61. <artifactId>jsoup</artifactId>
  62. <version>${jsoup.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.jfinal</groupId>
  66. <artifactId>jfinal</artifactId>
  67. <version>${jfinal.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.jfinal</groupId>
  71. <artifactId>jfinal-weixin</artifactId>
  72. <version>${jfinal.weixin.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.mail</groupId>
  76. <artifactId>javax.mail-api</artifactId>
  77. <version>${javax.mail.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.sun.mail</groupId>
  81. <artifactId>javax.mail</artifactId>
  82. <version>${javax.mail.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.freemarker</groupId>
  86. <artifactId>freemarker</artifactId>
  87. <version>${freemarker.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. <version>${fastjson.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.sf.ehcache</groupId>
  96. <artifactId>ehcache</artifactId>
  97. <version>${ehcache.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.alibaba</groupId>
  101. <artifactId>druid</artifactId>
  102. <version>${druid.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>javax.servlet-api</artifactId>
  107. <version>${servlet.api.version}</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>junit</groupId>
  112. <artifactId>junit</artifactId>
  113. <version>${junit.version}</version>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>mysql</groupId>
  118. <artifactId>mysql-connector-java</artifactId>
  119. <version>${mysql.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.uas.account</groupId>
  123. <artifactId>sso-core</artifactId>
  124. <version>0.0.1-SNAPSHOT</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.uas.sso</groupId>
  128. <artifactId>sso-common</artifactId>
  129. <version>0.0.1-SNAPSHOT</version>
  130. </dependency>
  131. </dependencies>
  132. </dependencyManagement>
  133. <build>
  134. <pluginManagement>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-compiler-plugin</artifactId>
  139. <version>2.3.2</version>
  140. <configuration>
  141. <source>${jdk.version}</source>
  142. <target>${jdk.version}</target>
  143. <encoding>UTF-8</encoding>
  144. </configuration>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-resources-plugin</artifactId>
  149. <version>2.6</version>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-war-plugin</artifactId>
  154. <version>2.4</version>
  155. </plugin>
  156. </plugins>
  157. </pluginManagement>
  158. </build>
  159. </project>