pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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-modules-app</artifactId>
  12. <packaging>jar</packaging>
  13. <description>小程序服务</description>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <!-- SpringCloud Alibaba Nacos -->
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  23. </dependency>
  24. <!-- SpringCloud Alibaba Nacos Config -->
  25. <dependency>
  26. <groupId>com.alibaba.cloud</groupId>
  27. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  28. </dependency>
  29. <!-- SpringCloud Alibaba Sentinel -->
  30. <dependency>
  31. <groupId>com.alibaba.cloud</groupId>
  32. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  33. </dependency>
  34. <!-- SpringBoot Actuator -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-actuator</artifactId>
  38. </dependency>
  39. <!-- Swagger UI -->
  40. <!--<dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger-ui</artifactId>
  43. <version>${swagger.fox.version}</version>
  44. </dependency>-->
  45. <!-- zd Common Swagger -->
  46. <dependency>
  47. <groupId>com.zd</groupId>
  48. <artifactId>zd-common-swagger</artifactId>
  49. </dependency>
  50. <!--<dependency>
  51. <groupId>com.zd</groupId>
  52. <artifactId>zd-common-security</artifactId>
  53. </dependency>-->
  54. <dependency>
  55. <groupId>com.zd.core</groupId>
  56. <artifactId>common-core</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.zd.exam</groupId>
  60. <artifactId>zd-exam-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.zd.laboratory</groupId>
  64. <artifactId>zd-laboratory-api</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.zd.system</groupId>
  68. <artifactId>zd-system-api</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>${project.artifactId}</finalName>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>