pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. <!-- Mysql Connector -->
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <!-- zd Common Swagger -->
  31. <dependency>
  32. <groupId>com.zd.swagger</groupId>
  33. <artifactId>common-swagger</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>ws.schild</groupId>
  37. <artifactId>jave-all-deps</artifactId>
  38. <version>3.2.0</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>ws.schild</groupId>
  42. <artifactId>jave-nativebin-win32</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>ws.schild</groupId>
  46. <artifactId>jave-nativebin-win64</artifactId>
  47. </exclusion>
  48. <exclusion>
  49. <groupId>ws.schild</groupId>
  50. <artifactId>jave-nativebin-linux32</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>ws.schild</groupId>
  54. <artifactId>jave-nativebin-linux64</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>ws.schild</groupId>
  58. <artifactId>jave-nativebin-osx64</artifactId>
  59. </exclusion>
  60. <exclusion>
  61. <groupId>ws.schild</groupId>
  62. <artifactId>jave-nativebin-linux-arm32</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>ws.schild</groupId>
  66. <artifactId>jave-nativebin-linux-arm64</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.zd.core</groupId>
  72. <artifactId>common-core</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <artifactId>poi-ooxml-schemas</artifactId>
  76. <groupId>org.apache.poi</groupId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.zd.base</groupId>
  82. <artifactId>zd-base-api</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.zd.laboratory</groupId>
  86. <artifactId>zd-laboratory-api</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-mock</artifactId>
  91. <version>2.0.8</version>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <finalName>${project.artifactId}</finalName>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <executions>
  101. <execution>
  102. <goals>
  103. <goal>repackage</goal>
  104. </goals>
  105. </execution>
  106. </executions>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>