pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>apm-parent</artifactId>
  5. <groupId>com.persagy</groupId>
  6. <version>v1.3.0-SNAPSHOT</version>
  7. <relativePath>../apm-parent</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>apm-common</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>persagy</id>
  14. <name>releases Repository</name>
  15. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  16. </repository>
  17. <repository>
  18. <id>integrated</id>
  19. <name>releases Repository</name>
  20. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  21. </repository>
  22. </repositories>
  23. <dependencies>
  24. <!-- 集成框架工具类 -->
  25. <dependency>
  26. <groupId>com.persagy</groupId>
  27. <artifactId>starter-cloud</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.persagy</groupId>
  31. <artifactId>starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.persagy</groupId>
  35. <artifactId>starter-redis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.persagy</groupId>
  39. <artifactId>starter-excel</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.persagy</groupId>
  43. <artifactId>starter-rabbitmq</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.persagy</groupId>
  47. <artifactId>starter-databases</artifactId>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!-- google工具类(easyCode模板中使用到了其中的方法) -->
  56. <dependency>
  57. <groupId>com.google.guava</groupId>
  58. <artifactId>guava</artifactId>
  59. </dependency>
  60. <!-- mysql -->
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. </dependency>
  65. <!-- mapstruct 优雅的进行bean与dto的转换 -->
  66. <dependency>
  67. <groupId>org.mapstruct</groupId>
  68. <artifactId>mapstruct-jdk8</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mapstruct</groupId>
  72. <artifactId>mapstruct-processor</artifactId>
  73. </dependency>
  74. <!-- 拼音库 -->
  75. <dependency>
  76. <groupId>io.github.biezhi</groupId>
  77. <artifactId>TinyPinyin</artifactId>
  78. <version>2.0.3.RELEASE</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.springfox</groupId>
  82. <artifactId>springfox-spi</artifactId>
  83. <version>2.9.2</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.xiaoymin</groupId>
  88. <artifactId>knife4j-spring-boot-starter</artifactId>
  89. <version>2.0.3</version>
  90. <exclusions>
  91. <exclusion>
  92. <artifactId>javassist</artifactId>
  93. <groupId>org.javassist</groupId>
  94. </exclusion>
  95. <exclusion>
  96. <artifactId>jackson-annotations</artifactId>
  97. <groupId>com.fasterxml.jackson.core</groupId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. </dependencies>
  102. </project>