Skip to content

Commit 7294038

Browse files
committed
🚚 简化模块名称,便于阅读
1 parent 14bcdbc commit 7294038

File tree

866 files changed

+710
-712
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

866 files changed

+710
-712
lines changed
File renamed without changes.

spring-boot-demo-activiti/pom.xml renamed to demo-activiti/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-activiti</artifactId>
6+
<artifactId>demo-activiti</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-activiti</name>
10+
<name>demo-activiti</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -59,7 +59,7 @@
5959
</dependencies>
6060

6161
<build>
62-
<finalName>spring-boot-demo-activiti</finalName>
62+
<finalName>demo-activiti</finalName>
6363
<plugins>
6464
<plugin>
6565
<groupId>org.springframework.boot</groupId>
File renamed without changes.

spring-boot-demo-actuator/pom.xml renamed to demo-actuator/pom.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
4+
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-actuator</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
8-
<packaging>jar</packaging>
6+
<artifactId>demo-actuator</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-actuator</name>
11-
<description>Demo project for Spring Boot</description>
10+
<name>demo-actuator</name>
11+
<description>Demo project for Spring Boot</description>
1212

13-
<parent>
14-
<groupId>com.xkcoding</groupId>
15-
<artifactId>spring-boot-demo</artifactId>
16-
<version>1.0.0-SNAPSHOT</version>
17-
</parent>
13+
<parent>
14+
<groupId>com.xkcoding</groupId>
15+
<artifactId>spring-boot-demo</artifactId>
16+
<version>1.0.0-SNAPSHOT</version>
17+
</parent>
1818

19-
<properties>
20-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
<properties>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2222
<java.version>1.8</java.version>
2323
</properties>
@@ -51,14 +51,14 @@
5151
</dependency>
5252
</dependencies>
5353

54-
<build>
55-
<finalName>spring-boot-demo-actuator</finalName>
56-
<plugins>
57-
<plugin>
58-
<groupId>org.springframework.boot</groupId>
59-
<artifactId>spring-boot-maven-plugin</artifactId>
60-
</plugin>
61-
</plugins>
62-
</build>
54+
<build>
55+
<finalName>demo-actuator</finalName>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.springframework.boot</groupId>
59+
<artifactId>spring-boot-maven-plugin</artifactId>
60+
</plugin>
61+
</plugins>
62+
</build>
6363

6464
</project>

spring-boot-demo-admin/spring-boot-demo-admin-client/pom.xml renamed to demo-admin/admin-client/pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<groupId>com.xkcoding</groupId>
6+
<artifactId>demo-admin</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
</parent>
49
<modelVersion>4.0.0</modelVersion>
510

6-
<artifactId>spring-boot-demo-admin-client</artifactId>
11+
<artifactId>admin-client</artifactId>
712
<version>1.0.0-SNAPSHOT</version>
813
<packaging>jar</packaging>
914

10-
<name>spring-boot-demo-admin-client</name>
15+
<name>admin-client</name>
1116
<description>Demo project for Spring Boot</description>
1217

13-
<parent>
14-
<groupId>com.xkcoding</groupId>
15-
<artifactId>spring-boot-demo-admin</artifactId>
16-
<version>1.0.0-SNAPSHOT</version>
17-
</parent>
18-
1918
<properties>
2019
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2120
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -46,7 +45,7 @@
4645
</dependencies>
4746

4847
<build>
49-
<finalName>spring-boot-demo-admin-client</finalName>
48+
<finalName>admin-client</finalName>
5049
<plugins>
5150
<plugin>
5251
<groupId>org.springframework.boot</groupId>

spring-boot-demo-admin/spring-boot-demo-admin-server/pom.xml renamed to demo-admin/admin-server/pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<groupId>com.xkcoding</groupId>
6+
<artifactId>demo-admin</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
</parent>
49
<modelVersion>4.0.0</modelVersion>
510

6-
<artifactId>spring-boot-demo-admin-server</artifactId>
11+
<artifactId>demo-admin-server</artifactId>
712
<version>1.0.0-SNAPSHOT</version>
813
<packaging>jar</packaging>
914

10-
<name>spring-boot-demo-admin-server</name>
15+
<name>admin-server</name>
1116
<description>Demo project for Spring Boot</description>
1217

13-
<parent>
14-
<groupId>com.xkcoding</groupId>
15-
<artifactId>spring-boot-demo-admin</artifactId>
16-
<version>1.0.0-SNAPSHOT</version>
17-
</parent>
18-
1918
<properties>
2019
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2120
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -41,7 +40,7 @@
4140
</dependencies>
4241

4342
<build>
44-
<finalName>spring-boot-demo-admin-server</finalName>
43+
<finalName>admin-server</finalName>
4544
<plugins>
4645
<plugin>
4746
<groupId>org.springframework.boot</groupId>

spring-boot-demo-admin/pom.xml renamed to demo-admin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>spring-boot-demo-admin</artifactId>
12+
<artifactId>demo-admin</artifactId>
1313
<packaging>pom</packaging>
1414

1515
<properties>
1616
<spring-boot-admin.version>2.1.0</spring-boot-admin.version>
1717
</properties>
1818

1919
<modules>
20-
<module>spring-boot-demo-admin-client</module>
21-
<module>spring-boot-demo-admin-server</module>
20+
<module>admin-client</module>
21+
<module>admin-server</module>
2222
</modules>
2323

2424
<dependencyManagement>
File renamed without changes.

spring-boot-demo-async/pom.xml renamed to demo-async/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-async</artifactId>
6+
<artifactId>demo-async</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-async</name>
10+
<name>demo-async</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -42,7 +42,7 @@
4242
</dependencies>
4343

4444
<build>
45-
<finalName>spring-boot-demo-async</finalName>
45+
<finalName>demo-async</finalName>
4646
<plugins>
4747
<plugin>
4848
<groupId>org.springframework.boot</groupId>

spring-boot-demo-cache-ehcache/pom.xml renamed to demo-cache-ehcache/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-cache-ehcache</artifactId>
6+
<artifactId>demo-cache-ehcache</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-cache-ehcache</name>
10+
<name>demo-cache-ehcache</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -57,7 +57,7 @@
5757
</dependencies>
5858

5959
<build>
60-
<finalName>spring-boot-demo-cache-ehcache</finalName>
60+
<finalName>demo-cache-ehcache</finalName>
6161
<plugins>
6262
<plugin>
6363
<groupId>org.springframework.boot</groupId>
File renamed without changes.

spring-boot-demo-cache-redis/pom.xml renamed to demo-cache-redis/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-cache-redis</artifactId>
6+
<artifactId>demo-cache-redis</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-cache-redis</name>
10+
<name>demo-cache-redis</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -69,7 +69,7 @@
6969
</dependencies>
7070

7171
<build>
72-
<finalName>spring-boot-demo-cache-redis</finalName>
72+
<finalName>demo-cache-redis</finalName>
7373
<plugins>
7474
<plugin>
7575
<groupId>org.springframework.boot</groupId>
File renamed without changes.

spring-boot-demo-codegen/pom.xml renamed to demo-codegen/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-codegen</artifactId>
6+
<artifactId>demo-codegen</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-codegen</name>
10+
<name>demo-codegen</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -86,7 +86,7 @@
8686
</dependencies>
8787

8888
<build>
89-
<finalName>spring-boot-demo-codegen</finalName>
89+
<finalName>demo-codegen</finalName>
9090
<plugins>
9191
<plugin>
9292
<groupId>org.springframework.boot</groupId>

spring-boot-demo-logback/src/main/resources/logback-spring.xml renamed to demo-codegen/src/main/resources/logback-spring.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<onMismatch>ACCEPT</onMismatch>
2525
</filter>
2626
<!--日志名称,如果没有File 属性,那么只会使用FileNamePattern的文件路径规则如果同时有<File>和<FileNamePattern>,那么当天日志是<File>,明天会自动把今天的日志改名为今天的日期。即,<File> 的日志都是当天的。-->
27-
<!--<File>logs/info.spring-boot-demo-logback.log</File>-->
27+
<!--<File>logs/info.demo-logback.log</File>-->
2828
<!--滚动策略,按照时间滚动 TimeBasedRollingPolicy-->
2929
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
3030
<!--文件路径,定义了日志的切分方式——把每一天的日志归档到一个文件中,以防止日志填满整个磁盘空间-->
31-
<FileNamePattern>logs/spring-boot-demo-logback/info.created_on_%d{yyyy-MM-dd}.part_%i.log</FileNamePattern>
31+
<FileNamePattern>logs/demo-logback/info.created_on_%d{yyyy-MM-dd}.part_%i.log</FileNamePattern>
3232
<!--只保留最近90天的日志-->
3333
<maxHistory>90</maxHistory>
3434
<!--用来指定日志文件的上限大小,那么到了这个值,就会删除旧的日志-->
@@ -53,11 +53,11 @@
5353
<level>Error</level>
5454
</filter>
5555
<!--日志名称,如果没有File 属性,那么只会使用FileNamePattern的文件路径规则如果同时有<File>和<FileNamePattern>,那么当天日志是<File>,明天会自动把今天的日志改名为今天的日期。即,<File> 的日志都是当天的。-->
56-
<!--<File>logs/error.spring-boot-demo-logback.log</File>-->
56+
<!--<File>logs/error.demo-logback.log</File>-->
5757
<!--滚动策略,按照时间滚动 TimeBasedRollingPolicy-->
5858
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
5959
<!--文件路径,定义了日志的切分方式——把每一天的日志归档到一个文件中,以防止日志填满整个磁盘空间-->
60-
<FileNamePattern>logs/spring-boot-demo-logback/error.created_on_%d{yyyy-MM-dd}.part_%i.log</FileNamePattern>
60+
<FileNamePattern>logs/demo-logback/error.created_on_%d{yyyy-MM-dd}.part_%i.log</FileNamePattern>
6161
<!--只保留最近90天的日志-->
6262
<maxHistory>90</maxHistory>
6363
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
File renamed without changes.
File renamed without changes.

spring-boot-demo-docker/pom.xml renamed to demo-docker/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<artifactId>spring-boot-demo-docker</artifactId>
6+
<artifactId>demo-docker</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>spring-boot-demo-docker</name>
10+
<name>demo-docker</name>
1111
<description>Demo project for Spring Boot</description>
1212

1313
<parent>
@@ -37,7 +37,7 @@
3737
</dependencies>
3838

3939
<build>
40-
<finalName>spring-boot-demo-docker</finalName>
40+
<finalName>demo-docker</finalName>
4141
<plugins>
4242
<plugin>
4343
<groupId>org.springframework.boot</groupId>
File renamed without changes.

spring-boot-demo-dubbo/spring-boot-demo-dubbo-common/pom.xml renamed to demo-dubbo/dubbo-common/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>spring-boot-demo-dubbo</artifactId>
6+
<artifactId>demo-dubbo</artifactId>
77
<groupId>com.xkcoding</groupId>
88
<version>1.0.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>spring-boot-demo-dubbo-common</artifactId>
12+
<artifactId>dubbo-common</artifactId>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -18,7 +18,7 @@
1818
</properties>
1919

2020
<build>
21-
<finalName>spring-boot-demo-dubbo-common</finalName>
21+
<finalName>dubbo-common</finalName>
2222
</build>
2323

24-
</project>
24+
</project>

0 commit comments

Comments
 (0)