Skip to content

Commit e5a9204

Browse files
committed
optimize document
1 parent 50540af commit e5a9204

File tree

5 files changed

+38
-1
lines changed

5 files changed

+38
-1
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<module>spring-boot-data-aggregator-core</module>
1212
<module>spring-boot-data-aggregator-autoconfigure</module>
1313
<module>spring-boot-data-aggregator-example</module>
14+
<module>spring-boot-data-aggregator-starter</module>
1415
</modules>
1516
<packaging>pom</packaging>
1617

@@ -63,6 +64,12 @@
6364
<version>${project.version}</version>
6465
</dependency>
6566

67+
<dependency>
68+
<groupId>org.feego.spring</groupId>
69+
<artifactId>spring-boot-data-aggregator-starter</artifactId>
70+
<version>${project.version}</version>
71+
</dependency>
72+
6673
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
6774
<dependency>
6875
<groupId>org.apache.commons</groupId>

spring-boot-data-aggregator-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</dependency>
3535
<dependency>
3636
<groupId>org.feego.spring</groupId>
37-
<artifactId>spring-boot-data-aggregator-autoconfigure</artifactId>
37+
<artifactId>spring-boot-data-aggregator-starter</artifactId>
3838
</dependency>
3939
</dependencies>
4040

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>spring-boot-data-aggregator</artifactId>
7+
<groupId>org.feego.spring</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>spring-boot-data-aggregator-starter</artifactId>
13+
14+
<name>spring-boot-data-aggregator-starter</name>
15+
16+
<properties>
17+
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>org.feego.spring</groupId>
23+
<artifactId>spring-boot-data-aggregator-autoconfigure</artifactId>
24+
</dependency>
25+
</dependencies>
26+
27+
<build>
28+
29+
</build>
30+
</project>

spring-boot-data-aggregator-starter/src/main/java/org/feego/spring/.gitignore

Whitespace-only changes.

spring-boot-data-aggregator-starter/src/test/java/org/feego/spring/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)