pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>2.4.5</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/nexus/content/groups/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. <!-- 环境 -->
  70. <profiles>
  71. <!-- 开发 -->
  72. <profile>
  73. <id>dev</id>
  74. <properties>
  75. <activatedProperties>dev</activatedProperties>
  76. </properties>
  77. </profile>
  78. <!-- 测试 -->
  79. <profile>
  80. <id>test</id>
  81. <properties>
  82. <activatedProperties>test</activatedProperties>
  83. </properties>
  84. </profile>
  85. <!-- 生产 -->
  86. <profile>
  87. <id>prod</id>
  88. <properties>
  89. <activatedProperties>prod</activatedProperties>
  90. </properties>
  91. </profile>
  92. </profiles>
  93. </project>