pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>yujing-calculate</artifactId>
  7. <groupId>com.cn.tianji</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <!-- 打包格式 -->
  12. <packaging>jar</packaging>
  13. <artifactId>yujing-total-pool-volume</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.cn.tianji</groupId>
  17. <artifactId>yujing-common</artifactId>
  18. <version>0.0.1-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.cn.tianji</groupId>
  22. <artifactId>yujing-warning-calculation</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. </dependency>
  25. </dependencies>
  26. <properties>
  27. <maven.compiler.source>8</maven.compiler.source>
  28. <maven.compiler.target>8</maven.compiler.target>
  29. </properties>
  30. <!-- 打包插件 -->
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <configuration>
  37. <executable>true</executable>
  38. <layout>JAR</layout>
  39. </configuration>
  40. <executions>
  41. <execution>
  42. <goals>
  43. <goal>repackage</goal>
  44. </goals>
  45. <configuration>
  46. <attach>false</attach>
  47. </configuration>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>