pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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</groupId>
  24. <artifactId>cloud-admin-client</artifactId>
  25. <version>${hosea-cloud.version}</version>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.jolokia</groupId>
  29. <artifactId>jolokia-support-spring</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.hosea.cloud.user</groupId>
  35. <artifactId>service-user-client</artifactId>
  36. <version>${service-user-client.version}</version>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>com.hosea.cloud</groupId>
  40. <artifactId>cloud-webmvc</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>17</source>
  52. <target>17</target>
  53. <encoding>${project.build.sourceEncoding}</encoding>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>