pom.xml 2.6 KB

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