pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.hosea.cloud.template</groupId>
  7. <artifactId>gateway</artifactId>
  8. <version>1.0.0</version>
  9. <name>Gateway Template ${version}</name>
  10. <description>网关模板</description>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <hosea-cloud.version>1.0.0</hosea-cloud.version>
  14. <service-user-client.version>1.0.0</service-user-client.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.hosea.cloud</groupId>
  19. <artifactId>cloud-gateway-maxkey</artifactId>
  20. <version>${hosea-cloud.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.hosea.cloud.user</groupId>
  24. <artifactId>service-user-client</artifactId>
  25. <version>${service-user-client.version}</version>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>com.hosea.cloud</groupId>
  29. <artifactId>cloud-webmvc</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <configuration>
  40. <source>17</source>
  41. <target>17</target>
  42. <encoding>${project.build.sourceEncoding}</encoding>
  43. </configuration>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>