pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 1999-2018 Alibaba Group Holding Ltd.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>com.ruoyi</groupId>
  23. <artifactId>ruoyi-visual</artifactId>
  24. <version>1.2.0</version>
  25. </parent>
  26. <artifactId>ruoyi-nacos</artifactId>
  27. <packaging>jar</packaging>
  28. <properties>
  29. <nacos.version>2.1.1</nacos.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>io.springboot.nacos</groupId>
  34. <artifactId>nacos-config</artifactId>
  35. <version>${nacos.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.springboot.nacos</groupId>
  39. <artifactId>nacos-naming</artifactId>
  40. <version>${nacos.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.springboot.nacos</groupId>
  44. <artifactId>nacos-plugin-default-impl</artifactId>
  45. <version>${nacos.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.springboot.nacos</groupId>
  49. <artifactId>nacos-istio</artifactId>
  50. <version>${nacos.version}</version>
  51. </dependency>
  52. <!-- log -->
  53. <!-- log4j通过slf4j来代理 -->
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>log4j-over-slf4j</artifactId>
  57. </dependency>
  58. <!-- apache commons logging通过slf4j来代理 -->
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>jcl-over-slf4j</artifactId>
  62. </dependency>
  63. <!-- java.util.logging 通过slf4j来代理 -->
  64. <dependency>
  65. <groupId>org.slf4j</groupId>
  66. <artifactId>jul-to-slf4j</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-security</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>de.codecentric</groupId>
  74. <artifactId>spring-boot-admin-client</artifactId>
  75. <version>${spring-boot-admin.version}</version>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <finalName>${project.artifactId}</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>${spring-boot.version}</version>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>repackage</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>