pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.eco.vip</groupId>
  7. <artifactId>eco-boot</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>eco-start</artifactId>
  11. <name>${project.artifactId}</name>
  12. <description>eco-start web 服务入口</description>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.eco.vip</groupId>
  17. <artifactId>nexus-core-biz</artifactId>
  18. <version>${revision}</version>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-maven-plugin</artifactId>
  26. <version>${spring-boot.version}</version>
  27. <executions>
  28. <execution>
  29. <goals>
  30. <goal>repackage</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. </plugins>
  36. <finalName>${project.artifactId}</finalName>
  37. </build>
  38. </project>