pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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-pull</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. <dependency>
  26. <groupId>com.github.ben-manes.caffeine</groupId>
  27. <artifactId>caffeine</artifactId>
  28. <version>2.6.2</version>
  29. </dependency>
  30. </dependencies>
  31. <properties>
  32. <maven.compiler.source>8</maven.compiler.source>
  33. <maven.compiler.target>8</maven.compiler.target>
  34. </properties>
  35. <!-- 打包插件 -->
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. <configuration>
  42. <executable>true</executable>
  43. <layout>JAR</layout>
  44. </configuration>
  45. <executions>
  46. <execution>
  47. <goals>
  48. <goal>repackage</goal>
  49. </goals>
  50. <configuration>
  51. <attach>false</attach>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>