pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.3</version>
  58. <configuration>
  59. <source>1.7</source>
  60. <target>1.7</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <!-- 配置 -->
  66. <profiles>
  67. <profile>
  68. <id>sonar</id>
  69. <activation>
  70. <activeByDefault>true</activeByDefault>
  71. </activation>
  72. <properties>
  73. <sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
  74. <sonar.login>admin</sonar.login>
  75. <sonar.password>iamberry123</sonar.password>
  76. </properties>
  77. </profile>
  78. </profiles>
  79. </project>