pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>iamberry-parent</artifactId>
  7. <groupId>com.iamberry</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wateroPF-wechat-web</artifactId>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.iamberry</groupId>
  16. <artifactId>wateroPF-common-web</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.iamberry</groupId>
  21. <artifactId>wateroPF-wechat-service</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.googlecode.json-simple</groupId>
  26. <artifactId>json-simple</artifactId>
  27. <version>1.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet.jsp</groupId>
  31. <artifactId>javax.servlet.jsp-api</artifactId>
  32. <version>2.3.1</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>javax.servlet-api</artifactId>
  38. <version>3.1.0</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>javax.servlet</groupId>
  43. <artifactId>jstl</artifactId>
  44. </dependency>
  45. <!-- 新的项目使用druid -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid</artifactId>
  49. <version>1.0.20</version>
  50. </dependency>
  51. </dependencies>
  52. <!-- 配置 -->
  53. <profiles>
  54. <profile>
  55. <id>sonar</id>
  56. <activation>
  57. <activeByDefault>true</activeByDefault>
  58. </activation>
  59. <properties>
  60. <sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
  61. <sonar.login>admin</sonar.login>
  62. <sonar.password>iamberry123</sonar.password>
  63. </properties>
  64. </profile>
  65. </profiles>
  66. </project>