pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>wechat-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>wechat-common-core</artifactId>
  18. <version>1.0.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.iamberry</groupId>
  22. <artifactId>wechat-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.8</source>
  34. <target>1.8</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. <!-- 爱贝源仓库 -->
  54. <repositories>
  55. <repository>
  56. <id>Iamberr_Nexus</id>
  57. <name>iamberry nexus</name>
  58. <url>http://maven.iamberry.com/content/groups/public/</url>
  59. </repository>
  60. </repositories>
  61. </project>