pom.xml 2.5 KB

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