pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <dependency>
  21. <groupId>org.eco.vip</groupId>
  22. <artifactId>reliability-service</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-maven-plugin</artifactId>
  31. <version>${spring-boot.version}</version>
  32. <executions>
  33. <execution>
  34. <goals>
  35. <goal>repackage</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. <finalName>${project.artifactId}</finalName>
  42. </build>
  43. </project>