pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-hook-load-warning</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. </dependencies>
  30. <properties>
  31. <maven.compiler.source>8</maven.compiler.source>
  32. <maven.compiler.target>8</maven.compiler.target>
  33. </properties>
  34. <!-- 打包插件 -->
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. <configuration>
  41. <executable>true</executable>
  42. <layout>JAR</layout>
  43. </configuration>
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>repackage</goal>
  48. </goals>
  49. <configuration>
  50. <attach>false</attach>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>