pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.thyy.plugins</groupId>
  7. <artifactId>thyy-plugins</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <groupId>org.thyy</groupId>
  11. <artifactId>thyy-gateway</artifactId>
  12. <version>${thyy-gateway}</version>
  13. <name>thyy-gateway</name>
  14. <description>thyy-gateway</description>
  15. <properties>
  16. <java.version>21</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.thyy.business</groupId>
  25. <artifactId>thyy-utils</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.thyy.business</groupId>
  29. <artifactId>thyy-utils</artifactId>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-maven-plugin</artifactId>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>