25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.3 KiB

1 년 전
1 년 전
1 년 전
1 년 전
1 년 전
1 년 전
1234567891011121314151617181920212223242526272829303132333435363738394041
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>work.xuye</groupId>
  6. <artifactId>std-news-process</artifactId>
  7. <version>0.0.8</version>
  8. </parent>
  9. <artifactId>source</artifactId>
  10. <version>0.0.8</version>
  11. <name>source</name>
  12. <description>source</description>
  13. <properties>
  14. <java.version>11</java.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>work.xuye</groupId>
  19. <artifactId>common</artifactId>
  20. <version>0.0.8</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. <version>${spring-boot.version}</version>
  29. <executions>
  30. <execution>
  31. <goals>
  32. <goal>repackage</goal>
  33. </goals>
  34. </execution>
  35. </executions>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>