Skip to content

Commit bd52ff4

Browse files
committed
🎉 spring-boot-starter-replicate
1 parent 327c9e3 commit bd52ff4

3 files changed

Lines changed: 27 additions & 11 deletions

File tree

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,21 @@
2626

2727
<dependencyManagement>
2828
<dependencies>
29+
<dependency>
30+
<groupId>io.graversen</groupId>
31+
<artifactId>spring-boot-starter-replicate</artifactId>
32+
<version>${project.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>io.graversen</groupId>
36+
<artifactId>replicate-client</artifactId>
37+
<version>${project.version}</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>io.graversen</groupId>
41+
<artifactId>replicate-models</artifactId>
42+
<version>${project.version}</version>
43+
</dependency>
2944
<dependency>
3045
<groupId>io.github.openfeign</groupId>
3146
<artifactId>feign-core</artifactId>
@@ -55,5 +70,6 @@
5570
<modules>
5671
<module>replicate-client</module>
5772
<module>spring-boot-starter-replicate</module>
73+
<module>replicate-models</module>
5874
</modules>
5975
</project>
Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?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"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
45

56
<modelVersion>4.0.0</modelVersion>
67
<artifactId>spring-boot-starter-replicate</artifactId>
7-
<version>0.0.0</version>
88

99
<parent>
1010
<groupId>io.graversen</groupId>
@@ -13,6 +13,14 @@
1313
</parent>
1414

1515
<dependencies>
16+
<dependency>
17+
<groupId>io.graversen</groupId>
18+
<artifactId>replicate-client</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>io.graversen</groupId>
22+
<artifactId>replicate-models</artifactId>
23+
</dependency>
1624
<dependency>
1725
<groupId>org.springframework.boot</groupId>
1826
<artifactId>spring-boot-starter</artifactId>
@@ -24,13 +32,4 @@
2432
<scope>test</scope>
2533
</dependency>
2634
</dependencies>
27-
28-
<build>
29-
<plugins>
30-
<plugin>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-maven-plugin</artifactId>
33-
</plugin>
34-
</plugins>
35-
</build>
3635
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
io.graversen.replicate.configuration.ReplicateAutoConfiguration

0 commit comments

Comments
 (0)