pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <dependency>
  46. <groupId>org.jsoup</groupId>
  47. <artifactId>jsoup</artifactId>
  48. <version>1.7.3</version>
  49. </dependency>
  50. <!-- 新的项目使用druid -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid</artifactId>
  54. <version>1.0.20</version>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>3.3</version>
  63. <configuration>
  64. <source>1.7</source>
  65. <target>1.7</target>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. <!-- 配置 -->
  71. <profiles>
  72. <profile>
  73. <id>sonar</id>
  74. <activation>
  75. <activeByDefault>true</activeByDefault>
  76. </activation>
  77. <properties>
  78. <sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
  79. <sonar.login>admin</sonar.login>
  80. <sonar.password>iamberry123</sonar.password>
  81. </properties>
  82. </profile>
  83. </profiles>
  84. </project>