pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>org.example</groupId>
  7. <artifactId>zzjProxy</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. </properties>
  13. <parent>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <groupId>org.springframework.boot</groupId>
  16. <version>2.0.1.RELEASE</version>
  17. </parent>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <finalName>proxy</finalName>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. <version>2.0.1.RELEASE</version>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <repositories>
  39. <repository>
  40. <id>spring-snapshots</id>
  41. <name>Spring Snapshots</name>
  42. <url>https://repo.spring.io/snapshot</url>
  43. <snapshots>
  44. <enabled>true</enabled>
  45. </snapshots>
  46. </repository>
  47. <repository>
  48. <id>spring-milestones</id>
  49. <name>Spring Milestones</name>
  50. <url>https://repo.spring.io/milestone</url>
  51. <snapshots>
  52. <enabled>false</enabled>
  53. </snapshots>
  54. </repository>
  55. </repositories>
  56. <pluginRepositories>
  57. <pluginRepository>
  58. <id>spring-snapshots</id>
  59. <name>Spring Snapshots</name>
  60. <url>https://repo.spring.io/snapshot</url>
  61. <snapshots>
  62. <enabled>true</enabled>
  63. </snapshots>
  64. </pluginRepository>
  65. <pluginRepository>
  66. <id>spring-milestones</id>
  67. <name>Spring Milestones</name>
  68. <url>https://repo.spring.io/milestone</url>
  69. <snapshots>
  70. <enabled>false</enabled>
  71. </snapshots>
  72. </pluginRepository>
  73. </pluginRepositories>
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-dependencies</artifactId>
  79. <version>Finchley.SR2</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. </dependencies>
  84. </dependencyManagement>
  85. </project>