pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.ytpm</groupId>
  6. <artifactId>yt-walk</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>walk-feign</artifactId>
  10. <name>Maven</name>
  11. <url>http://maven.apache.org/</url>
  12. <inceptionYear>2001</inceptionYear>
  13. <distributionManagement>
  14. <site>
  15. <id>website</id>
  16. <url>scp://webhost.company.com/www/website</url>
  17. </site>
  18. </distributionManagement>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-maven-plugin</artifactId>
  27. <version>${spring-boot.version}</version>
  28. <configuration>
  29. <skip>
  30. true
  31. </skip>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>