pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>wateroPF-wechat-interface</artifactId>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.iamberry</groupId>
  17. <artifactId>wateroPF-common-core</artifactId>
  18. <version>1.0.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.iamberry</groupId>
  22. <artifactId>wateroPF-common-tool</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <version>3.3</version>
  32. <configuration>
  33. <source>1.7</source>
  34. <target>1.7</target>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. <!-- 配置 -->
  40. <profiles>
  41. <profile>
  42. <id>sonar</id>
  43. <activation>
  44. <activeByDefault>true</activeByDefault>
  45. </activation>
  46. <properties>
  47. <sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
  48. <sonar.login>admin</sonar.login>
  49. <sonar.password>iamberry123</sonar.password>
  50. </properties>
  51. </profile>
  52. </profiles>
  53. </project>