pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <artifactId>jeecg-cloud-nacos</artifactId>
  6. <name>jeecg-cloud-nacos</name>
  7. <description>nacos启动模块</description>
  8. <version>3.4.0</version>
  9. <!-- Nacos2不支持springboot2.6.6 -->
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.5.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <repositories>
  17. <repository>
  18. <id>aliyun</id>
  19. <name>aliyun Repository</name>
  20. <url>https://maven.aliyun.com/repository/public</url>
  21. <snapshots>
  22. <enabled>false</enabled>
  23. </snapshots>
  24. </repository>
  25. <repository>
  26. <id>jeecg</id>
  27. <name>jeecg Repository</name>
  28. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  29. <snapshots>
  30. <enabled>false</enabled>
  31. </snapshots>
  32. </repository>
  33. </repositories>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.tomcat.embed</groupId>
  37. <artifactId>tomcat-embed-jasper</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-security</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jeecgframework.nacos</groupId>
  45. <artifactId>nacos-naming</artifactId>
  46. <version>2.0.4</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.jeecgframework.nacos</groupId>
  50. <artifactId>nacos-istio</artifactId>
  51. <version>2.0.4</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.jeecgframework.nacos</groupId>
  55. <artifactId>nacos-config</artifactId>
  56. <version>2.0.4</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.jeecgframework.nacos</groupId>
  60. <artifactId>nacos-console</artifactId>
  61. <version>2.0.4</version>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>