pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <artifactId>zd-exam</artifactId>
  12. <packaging>jar</packaging>
  13. <description>考试服务</description>
  14. <dependencies>
  15. <!-- SpringCloud Alibaba Nacos -->
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>javassist</artifactId>
  22. <groupId>org.javassist</groupId>
  23. </exclusion>
  24. <exclusion>
  25. <artifactId>guava</artifactId>
  26. <groupId>com.google.guava</groupId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <!-- SpringCloud Alibaba Nacos Config -->
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  34. </dependency>
  35. <!-- Mysql Connector -->
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. </dependency>
  40. <!-- zd Common Swagger -->
  41. <dependency>
  42. <groupId>com.zd.swagger</groupId>
  43. <artifactId>common-swagger</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>ws.schild</groupId>
  47. <artifactId>jave-all-deps</artifactId>
  48. <version>3.2.0</version>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>ws.schild</groupId>
  52. <artifactId>jave-nativebin-win32</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>ws.schild</groupId>
  56. <artifactId>jave-nativebin-win64</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>ws.schild</groupId>
  60. <artifactId>jave-nativebin-linux32</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>ws.schild</groupId>
  64. <artifactId>jave-nativebin-linux64</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>ws.schild</groupId>
  68. <artifactId>jave-nativebin-osx64</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>ws.schild</groupId>
  72. <artifactId>jave-nativebin-linux-arm32</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>ws.schild</groupId>
  76. <artifactId>jave-nativebin-linux-arm64</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.zd.core</groupId>
  82. <artifactId>common-core</artifactId>
  83. <exclusions>
  84. <exclusion>
  85. <artifactId>poi-ooxml-schemas</artifactId>
  86. <groupId>org.apache.poi</groupId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.zd.base</groupId>
  92. <artifactId>zd-base-api</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.zd.laboratory</groupId>
  96. <artifactId>zd-laboratory-api</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-mock</artifactId>
  101. <version>2.0.8</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-core</artifactId>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-access</artifactId>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>ch.qos.logback</groupId>
  115. <artifactId>logback-classic</artifactId>
  116. <scope>compile</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.skywalking</groupId>
  120. <artifactId>apm-toolkit-logback-1.x</artifactId>
  121. <version>8.3.0</version>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <finalName>${project.artifactId}</finalName>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <version>${spring-boot.version}</version>
  131. <executions>
  132. <execution>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>