pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>iamberry-parent</artifactId>
  5. <groupId>com.iamberry</groupId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>watero-rst-web</artifactId>
  10. <packaging>war</packaging>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.iamberry</groupId>
  14. <artifactId>watero-common-core</artifactId>
  15. <version>1.0.0</version>
  16. </dependency>
  17. <!-- WEB 项目基本依赖 -->
  18. <dependency>
  19. <groupId>com.iamberry</groupId>
  20. <artifactId>watero-common-web</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <!-- jsonp -->
  24. <dependency>
  25. <groupId>org.jsoup</groupId>
  26. <artifactId>jsoup</artifactId>
  27. <version>1.12.1</version>
  28. </dependency>
  29. <!-- shiro -->
  30. <dependency>
  31. <groupId>org.apache.shiro</groupId>
  32. <artifactId>shiro-core</artifactId>
  33. <version>1.3.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.shiro</groupId>
  37. <artifactId>shiro-web</artifactId>
  38. <version>1.3.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.shiro</groupId>
  42. <artifactId>shiro-spring</artifactId>
  43. <version>1.3.2</version>
  44. </dependency>
  45. <!-- 新的项目使用druid -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid</artifactId>
  49. <version>1.0.20</version>
  50. </dependency>
  51. <!-- Service -->
  52. <dependency>
  53. <groupId>com.iamberry</groupId>
  54. <artifactId>watero-rst-service</artifactId>
  55. <version>1.0.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>javax.servlet.jsp</groupId>
  59. <artifactId>javax.servlet.jsp-api</artifactId>
  60. <version>2.3.1</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>javax.servlet-api</artifactId>
  66. <version>3.1.0</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.servlet</groupId>
  71. <artifactId>jstl</artifactId>
  72. </dependency>
  73. <!-- 校验 -->
  74. <dependency>
  75. <groupId>org.hibernate</groupId>
  76. <artifactId>hibernate-validator</artifactId>
  77. <version>5.1.3.Final</version>
  78. </dependency>
  79. <!-- POI -->
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi-ooxml</artifactId>
  83. <version>3.17</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.poi</groupId>
  87. <artifactId>poi-ooxml-schemas</artifactId>
  88. <version>3.17</version>
  89. </dependency>
  90. <!-- ueditor -->
  91. <dependency>
  92. <groupId>codec</groupId>
  93. <artifactId>codec</artifactId>
  94. <version>1.9</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>fileupload</groupId>
  98. <artifactId>fileupload</artifactId>
  99. <version>1.3.1</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>json</groupId>
  103. <artifactId>json</artifactId>
  104. <version>1.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>ueditor</groupId>
  108. <artifactId>ueditor</artifactId>
  109. <version>1.1.2</version>
  110. </dependency>
  111. <!-- 分词器 -->
  112. <dependency>
  113. <groupId>IKAnalyzer</groupId>
  114. <artifactId>IKAnalyzer2012</artifactId>
  115. <version>1.0</version>
  116. </dependency>
  117. <!-- 工作流 -->
  118. <dependency>
  119. <groupId>org.activiti</groupId>
  120. <artifactId>activiti-engine</artifactId>
  121. <version>6.0.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.activiti</groupId>
  125. <artifactId>activiti-spring</artifactId>
  126. <version>6.0.0</version>
  127. </dependency>
  128. <!-- 工作流 -->
  129. <!-- <dependency>
  130. <groupId>org.codehaus</groupId>
  131. <artifactId>jackson</artifactId>
  132. <version>1.9.8</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.codehaus</groupId>
  136. <artifactId>jackson-core-asl</artifactId>
  137. <version>1.9.8</version>
  138. </dependency>-->
  139. </dependencies>
  140. <build>
  141. <finalName>watero-rst-web</finalName>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-compiler-plugin</artifactId>
  146. <version>3.3</version>
  147. <configuration>
  148. <source>1.8</source>
  149. <target>1.8</target>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>