pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <!-- shiro -->
  24. <dependency>
  25. <groupId>org.apache.shiro</groupId>
  26. <artifactId>shiro-core</artifactId>
  27. <version>1.3.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.shiro</groupId>
  31. <artifactId>shiro-web</artifactId>
  32. <version>1.3.2</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.shiro</groupId>
  36. <artifactId>shiro-spring</artifactId>
  37. <version>1.3.2</version>
  38. </dependency>
  39. <!-- 新的项目使用druid -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid</artifactId>
  43. <version>1.0.20</version>
  44. </dependency>
  45. <!-- Service -->
  46. <dependency>
  47. <groupId>com.iamberry</groupId>
  48. <artifactId>watero-rst-service</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet.jsp</groupId>
  53. <artifactId>javax.servlet.jsp-api</artifactId>
  54. <version>2.3.1</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>javax.servlet-api</artifactId>
  60. <version>3.1.0</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>jstl</artifactId>
  66. </dependency>
  67. <!-- 校验 -->
  68. <dependency>
  69. <groupId>org.hibernate</groupId>
  70. <artifactId>hibernate-validator</artifactId>
  71. <version>5.1.3.Final</version>
  72. </dependency>
  73. <!-- POI -->
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>3.14</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml-schemas</artifactId>
  82. <version>3.14</version>
  83. </dependency>
  84. <!-- ueditor -->
  85. <dependency>
  86. <groupId>codec</groupId>
  87. <artifactId>codec</artifactId>
  88. <version>1.9</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>fileupload</groupId>
  92. <artifactId>fileupload</artifactId>
  93. <version>1.3.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>json</groupId>
  97. <artifactId>json</artifactId>
  98. <version>1.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>ueditor</groupId>
  102. <artifactId>ueditor</artifactId>
  103. <version>1.1.2</version>
  104. </dependency>
  105. <!-- 分词器 -->
  106. <dependency>
  107. <groupId>IKAnalyzer</groupId>
  108. <artifactId>IKAnalyzer2012</artifactId>
  109. <version>1.0</version>
  110. </dependency>
  111. <!-- 工作流 -->
  112. <dependency>
  113. <groupId>org.activiti</groupId>
  114. <artifactId>activiti-engine</artifactId>
  115. <version>6.0.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.activiti</groupId>
  119. <artifactId>activiti-spring</artifactId>
  120. <version>6.0.0</version>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <finalName>watero-rst-web</finalName>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-compiler-plugin</artifactId>
  129. <version>3.3</version>
  130. <configuration>
  131. <source>1.7</source>
  132. <target>1.7</target>
  133. <compilerArguments>
  134. <verbose />
  135. <bootclasspath>${java.home}/lib/rt.jar</bootclasspath>
  136. </compilerArguments>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>