pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!-- 父类定义 -->
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- WeChat的web项目 -->
  11. <artifactId>watero-wechat-web</artifactId>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.iamberry</groupId>
  16. <artifactId>watero-rent-web</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.iamberry</groupId>
  21. <artifactId>watero-common-web</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.iamberry</groupId>
  26. <artifactId>watero-wechat-service</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.googlecode.json-simple</groupId>
  31. <artifactId>json-simple</artifactId>
  32. <version>1.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.servlet.jsp</groupId>
  36. <artifactId>javax.servlet.jsp-api</artifactId>
  37. <version>2.3.1</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>javax.servlet-api</artifactId>
  43. <version>3.1.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>jstl</artifactId>
  49. </dependency>
  50. <!-- shiro -->
  51. <dependency>
  52. <groupId>org.apache.shiro</groupId>
  53. <artifactId>shiro-core</artifactId>
  54. <version>1.3.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.shiro</groupId>
  58. <artifactId>shiro-web</artifactId>
  59. <version>1.3.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.shiro</groupId>
  63. <artifactId>shiro-spring</artifactId>
  64. <version>1.3.2</version>
  65. </dependency>
  66. <!-- 新的项目使用druid -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid</artifactId>
  70. <version>1.0.20</version>
  71. </dependency>
  72. <!-- POI -->
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi-ooxml</artifactId>
  76. <version>3.14</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi-ooxml-schemas</artifactId>
  81. <version>3.14</version>
  82. </dependency>
  83. <!-- 解析User-Agent -->
  84. <dependency>
  85. <groupId>User-Agent-Utils</groupId>
  86. <artifactId>UserAgentUtils</artifactId>
  87. <version>1.2.3</version>
  88. </dependency>
  89. </dependencies>
  90. </project>