pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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-bottle-parent</artifactId>
  7. <groupId>com.zd</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zd-bottle</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 Nacos Config -->
  26. <!--<dependency>
  27. <groupId>com.alibaba.nacos</groupId>
  28. <artifactId>nacos-spring-context</artifactId>
  29. <version>0.2.3-RC1</version>
  30. </dependency>-->
  31. <!-- SpringCloud Alibaba Sentinel -->
  32. <!--<dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  35. </dependency>
  36. &lt;!&ndash; SpringBoot Actuator &ndash;&gt;
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-actuator</artifactId>
  40. </dependency>-->
  41. <!-- Swagger UI -->
  42. <!--<dependency>
  43. <groupId>io.springfox</groupId>
  44. <artifactId>springfox-swagger-ui</artifactId>
  45. <version>${swagger.fox.version}</version>
  46. </dependency>-->
  47. <!-- Mysql Connector -->
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.code.gson</groupId>
  58. <artifactId>gson</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. <version>${dynamic-ds.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.zd</groupId>
  67. <artifactId>zd-bottle-api</artifactId>
  68. <version>${project.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.zd.algorithm</groupId>
  72. <artifactId>zd-algorithm-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.zd.laboratory</groupId>
  76. <artifactId>zd-laboratory-api</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.zd.chemical</groupId>
  80. <artifactId>zd-chemical-api</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <finalName>${project.artifactId}</finalName>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <version>${spring-boot.version}</version>
  90. <executions>
  91. <execution>
  92. <goals>
  93. <goal>repackage</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>