pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.zd</groupId>
  6. <artifactId>zd</artifactId>
  7. <version>3.1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>zd-auth</artifactId>
  11. <packaging>jar</packaging>
  12. <description>认证中心</description>
  13. <dependencies>
  14. <!-- SpringCloud Alibaba Nacos -->
  15. <dependency>
  16. <groupId>com.alibaba.cloud</groupId>
  17. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  18. <exclusions>
  19. <exclusion>
  20. <artifactId>guava</artifactId>
  21. <groupId>com.google.guava</groupId>
  22. </exclusion>
  23. <exclusion>
  24. <artifactId>javassist</artifactId>
  25. <groupId>org.javassist</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <!-- SpringCloud Alibaba Nacos Config -->
  30. <dependency>
  31. <groupId>com.alibaba.cloud</groupId>
  32. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  33. </dependency>
  34. <!-- zd Common Security-->
  35. <dependency>
  36. <groupId>com.zd.core</groupId>
  37. <artifactId>common-core</artifactId>
  38. <version>${zd.version}</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <artifactId>mybatis-spring-boot-starter</artifactId>
  46. <groupId>org.mybatis.spring.boot</groupId>
  47. </exclusion>
  48. <exclusion>
  49. <artifactId>poi-ooxml</artifactId>
  50. <groupId>org.apache.poi</groupId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.zd.chemical</groupId>
  56. <artifactId>zd-chemical-api</artifactId>
  57. <exclusions>
  58. <exclusion>
  59. <artifactId>tomcat-embed-websocket</artifactId>
  60. <groupId>org.apache.tomcat.embed</groupId>
  61. </exclusion>
  62. <exclusion>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.zd.auth</groupId>
  70. <artifactId>zd-auth-api</artifactId>
  71. <version>3.1.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.zd.swagger</groupId>
  75. <artifactId>common-swagger</artifactId>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <finalName>${project.artifactId}</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>${spring-boot.version}</version>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>repackage</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>