pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.3</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. <properties>
  35. <log4j2.version>2.17.0</log4j2.version>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.apache.tomcat.embed</groupId>
  40. <artifactId>tomcat-embed-jasper</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.jeecgframework.nacos</groupId>
  48. <artifactId>nacos-naming</artifactId>
  49. <version>2.0.4</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jeecgframework.nacos</groupId>
  53. <artifactId>nacos-istio</artifactId>
  54. <version>2.0.4</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.jeecgframework.nacos</groupId>
  58. <artifactId>nacos-config</artifactId>
  59. <version>2.0.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jeecgframework.nacos</groupId>
  63. <artifactId>nacos-console</artifactId>
  64. <version>2.0.4</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>