pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>apm-parent</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>3.0.0</version>
  9. <relativePath>../apm-parent</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>apm-common</artifactId>
  13. <version>3.0.0</version>
  14. <repositories>
  15. <repository>
  16. <id>persagy</id>
  17. <name>releases Repository</name>
  18. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  19. </repository>
  20. <repository>
  21. <id>integrated</id>
  22. <name>releases Repository</name>
  23. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  24. </repository>
  25. </repositories>
  26. <distributionManagement>
  27. <repository>
  28. <id>persagy</id>
  29. <name>releases Repository</name>
  30. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  31. <layout>default</layout>
  32. </repository>
  33. </distributionManagement>
  34. <dependencies>
  35. <!-- 集成框架工具类 -->
  36. <dependency>
  37. <groupId>com.persagy</groupId>
  38. <artifactId>integrated-common-core</artifactId>
  39. </dependency>
  40. <!-- 集成框架安全校验类 -->
  41. <dependency>
  42. <groupId>com.persagy</groupId>
  43. <artifactId>integrated-common-security</artifactId>
  44. </dependency>
  45. <!-- web -->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <!-- jackson -->
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.core</groupId>
  53. <artifactId>jackson-annotations</artifactId>
  54. <version>2.11.3</version>
  55. </dependency>
  56. <!-- google工具类(easyCode模板中使用到了其中的方法) -->
  57. <dependency>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. </dependency>
  61. <!-- mysql -->
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. </dependency>
  66. <!-- alibaba druid -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid-spring-boot-starter</artifactId>
  70. </dependency>
  71. <!-- mapstruct 优雅的进行bean与dto的转换 -->
  72. <dependency>
  73. <groupId>org.mapstruct</groupId>
  74. <artifactId>mapstruct-jdk8</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mapstruct</groupId>
  78. <artifactId>mapstruct-processor</artifactId>
  79. </dependency>
  80. <!-- mybatisPlus相关的依赖 end -->
  81. <!-- redis -->
  82. <dependency>
  83. <groupId>com.persagy</groupId>
  84. <artifactId>integrated-redis-spring-boot-starter</artifactId>
  85. </dependency>
  86. <!-- 拼音库 -->
  87. <dependency>
  88. <groupId>io.github.biezhi</groupId>
  89. <artifactId>TinyPinyin</artifactId>
  90. <version>2.0.3.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.springfox</groupId>
  94. <artifactId>springfox-spi</artifactId>
  95. <version>2.9.2</version>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-annotations</artifactId>
  101. <version>1.5.22</version>
  102. <scope>compile</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger-common</artifactId>
  107. <version>2.9.2</version>
  108. <scope>compile</scope>
  109. </dependency>
  110. </dependencies>
  111. </project>