pom.xml 2.3 KB

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