pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!-- 父类定义 -->
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- 工具类本身并不依赖其他模块 -->
  11. <artifactId>wechat-common-tool</artifactId>
  12. <version>1.0.0</version>
  13. <dependencies>
  14. <!-- JWT -->
  15. <dependency>
  16. <groupId>com.auth0</groupId>
  17. <artifactId>java-jwt</artifactId>
  18. <version>2.2.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.pagehelper</groupId>
  22. <artifactId>pagehelper</artifactId>
  23. <version>RELEASE</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>