Browse Source

spring-boot-demo-cache-redis 初始化

pull/1/head
Yangkai.Shen 6 years ago
parent
commit
55c71b304c
2 changed files with 5 additions and 6 deletions
  1. +1
    -0
      pom.xml
  2. +4
    -6
      spring-boot-demo-cache-redis/pom.xml

+ 1
- 0
pom.xml View File

@@ -26,6 +26,7 @@
<module>spring-boot-demo-orm-mybatis-mapper-page</module> <module>spring-boot-demo-orm-mybatis-mapper-page</module>
<module>spring-boot-demo-orm-mybatis-plus</module> <module>spring-boot-demo-orm-mybatis-plus</module>
<module>spring-boot-demo-orm-beetlsql</module> <module>spring-boot-demo-orm-beetlsql</module>
<module>spring-boot-demo-cache-redis</module>
<module>spring-boot-demo-email</module> <module>spring-boot-demo-email</module>
<module>spring-boot-demo-upload</module> <module>spring-boot-demo-upload</module>
<module>spring-boot-demo-war</module> <module>spring-boot-demo-war</module>


+ 4
- 6
spring-boot-demo-cache-redis/pom.xml View File

@@ -3,7 +3,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>


<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo-cache-redis</artifactId> <artifactId>spring-boot-demo-cache-redis</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
@@ -12,10 +11,9 @@
<description>Demo project for Spring Boot</description> <description>Demo project for Spring Boot</description>


<parent> <parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent> </parent>


<properties> <properties>
@@ -38,6 +36,7 @@
</dependencies> </dependencies>


<build> <build>
<finalName>spring-boot-demo-cache-redis</finalName>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
@@ -46,5 +45,4 @@
</plugins> </plugins>
</build> </build>



</project> </project>

Loading…
Cancel
Save