pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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-redis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.persagy</groupId>
  35. <artifactId>starter-excel</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.persagy</groupId>
  39. <artifactId>starter-rabbitmq</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.persagy</groupId>
  43. <artifactId>starter-databases</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-aop</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <!-- google工具类(easyCode模板中使用到了其中的方法) -->
  52. <dependency>
  53. <groupId>com.google.guava</groupId>
  54. <artifactId>guava</artifactId>
  55. </dependency>
  56. <!-- mysql -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. </dependency>
  61. <!-- mapstruct 优雅的进行bean与dto的转换 -->
  62. <dependency>
  63. <groupId>org.mapstruct</groupId>
  64. <artifactId>mapstruct-jdk8</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mapstruct</groupId>
  68. <artifactId>mapstruct-processor</artifactId>
  69. </dependency>
  70. <!-- 拼音库 -->
  71. <dependency>
  72. <groupId>io.github.biezhi</groupId>
  73. <artifactId>TinyPinyin</artifactId>
  74. <version>2.0.3.RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-spi</artifactId>
  79. <version>2.9.2</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.xiaoymin</groupId>
  84. <artifactId>knife4j-spring-boot-starter</artifactId>
  85. <version>2.0.3</version>
  86. <exclusions>
  87. <exclusion>
  88. <artifactId>javassist</artifactId>
  89. <groupId>org.javassist</groupId>
  90. </exclusion>
  91. <exclusion>
  92. <artifactId>jackson-annotations</artifactId>
  93. <groupId>com.fasterxml.jackson.core</groupId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. </dependencies>
  98. </project>