pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>tooth-common-tool</artifactId>
  12. <dependencies>
  13. <!-- JWT -->
  14. <dependency>
  15. <groupId>com.auth0</groupId>
  16. <artifactId>java-jwt</artifactId>
  17. <version>2.2.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper</artifactId>
  22. <version>RELEASE</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>3.3</version>
  31. <configuration>
  32. <source>1.7</source>
  33. <target>1.7</target>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <!-- 配置 -->
  39. <profiles>
  40. <profile>
  41. <id>sonar</id>
  42. <activation>
  43. <activeByDefault>true</activeByDefault>
  44. </activation>
  45. <properties>
  46. <sonar.host.url>http://sonar.iamberry.com/</sonar.host.url>
  47. <sonar.login>admin</sonar.login>
  48. <sonar.password>iamberry123</sonar.password>
  49. </properties>
  50. </profile>
  51. </profiles>
  52. <!-- 爱贝源仓库 -->
  53. <repositories>
  54. <repository>
  55. <id>Iamberr_Nexus</id>
  56. <name>iamberry nexus</name>
  57. <url>http://maven.iamberry.com/content/groups/public/</url>
  58. </repository>
  59. </repositories>
  60. </project>