pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. </dependency>
  20. <!-- SpringCloud Alibaba Nacos Config -->
  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. &lt;!&ndash; SpringBoot Actuator &ndash;&gt;
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-actuator</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. </dependencies>
  104. <build>
  105. <finalName>${project.artifactId}</finalName>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>repackage</goal>
  114. </goals>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>