pom.xml 5.0 KB

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