pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <groupId>com.jihengbel.intelligent</groupId>
  7. <artifactId>intelligent-factory</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>application-file</artifactId>
  13. <name>application-file</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.jihengbel.intelligent</groupId>
  17. <artifactId>common-config</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.jihengbel.intelligent</groupId>
  21. <artifactId>common-user</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <finalName>application-file</finalName>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <goals>
  33. <goal>repackage</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>