pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>zd-modules</artifactId>
  7. <groupId>com.zd</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.zd.base</groupId>
  12. <artifactId>zd-base</artifactId>
  13. <packaging>jar</packaging>
  14. <description>基础服务</description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. </dependency>
  25. <!-- SpringCloud Alibaba Sentinel -->
  26. <!--<dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  29. </dependency>-->
  30. <!-- Mysql Connector -->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.zd.swagger</groupId>
  37. <artifactId>common-swagger</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.zd.core</groupId>
  41. <artifactId>common-core</artifactId>
  42. <exclusions>
  43. <exclusion>
  44. <artifactId>poi-ooxml</artifactId>
  45. <groupId>org.apache.poi</groupId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.zd.base</groupId>
  51. <artifactId>zd-base-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.zd.laboratory</groupId>
  55. <artifactId>zd-laboratory-api</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.zd.exam</groupId>
  59. <artifactId>zd-exam-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.zd.chemical</groupId>
  63. <artifactId>zd-chemical-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>connect</groupId>
  67. <artifactId>connect-lib</artifactId>
  68. <version>1.0.0</version>
  69. <scope>system</scope>
  70. <systemPath>${pom.basedir}/src/main/resources/libs/connect-lib.jar</systemPath>
  71. </dependency>
  72. <dependency>
  73. <groupId>reader</groupId>
  74. <artifactId>reader-lib</artifactId>
  75. <version>1.0.0</version>
  76. <scope>system</scope>
  77. <systemPath>${pom.basedir}/src/main/resources/libs/reader-lib.jar</systemPath>
  78. </dependency>
  79. <!-- Quartz -->
  80. <dependency>
  81. <groupId>org.quartz-scheduler</groupId>
  82. <artifactId>quartz</artifactId>
  83. <exclusions>
  84. <exclusion>
  85. <groupId>com.mchange</groupId>
  86. <artifactId>c3p0</artifactId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <!-- FastDFS -->
  91. <dependency>
  92. <groupId>com.github.tobato</groupId>
  93. <artifactId>fastdfs-client</artifactId>
  94. <exclusions>
  95. <exclusion>
  96. <artifactId>slf4j-api</artifactId>
  97. <groupId>org.slf4j</groupId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>org.slf4j</groupId>
  101. <artifactId>jcl-over-slf4j</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-classic</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <!-- Minio -->
  110. <dependency>
  111. <groupId>io.minio</groupId>
  112. <artifactId>minio</artifactId>
  113. <version>${minio.version}</version>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <finalName>${project.artifactId}</finalName>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <configuration>
  123. <includeSystemScope>true</includeSystemScope>
  124. </configuration>
  125. <executions>
  126. <execution>
  127. <goals>
  128. <goal>repackage</goal>
  129. </goals>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>