Skip to content

Commit 7c10b3b

Browse files
committed
Polish POM files to make dependencies clearer
1 parent 72cc672 commit 7c10b3b

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

command/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,18 @@
2020
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>dledger-parent</artifactId>
23+
<artifactId>dledger-all</artifactId>
2424
<groupId>io.openmessaging.storage</groupId>
2525
<version>0.2.8-SNAPSHOT</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

29-
<artifactId>command</artifactId>
29+
<artifactId>dledger-command</artifactId>
3030

3131
<dependencies>
3232
<dependency>
3333
<groupId>io.openmessaging.storage</groupId>
34-
<artifactId>proxy</artifactId>
35-
<version>${project.version}</version>
34+
<artifactId>dledger-proxy</artifactId>
3635
</dependency>
3736
<dependency>
3837
<groupId>org.slf4j</groupId>

dledger/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>dledger-parent</artifactId>
23+
<artifactId>dledger-all</artifactId>
2424
<groupId>io.openmessaging.storage</groupId>
2525
<version>0.2.8-SNAPSHOT</version>
2626
</parent>

pom.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,10 @@
2828
</parent>
2929

3030
<groupId>io.openmessaging.storage</groupId>
31-
<artifactId>dledger-parent</artifactId>
31+
<artifactId>dledger-all</artifactId>
3232
<version>0.2.8-SNAPSHOT</version>
3333

3434
<packaging>pom</packaging>
35-
<name>openmessaging-dledger</name>
3635

3736
<properties>
3837
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -60,6 +59,16 @@
6059

6160
<dependencyManagement>
6261
<dependencies>
62+
<dependency>
63+
<groupId>io.openmessaging.storage</groupId>
64+
<artifactId>dledger-proxy</artifactId>
65+
<version>${project.version}</version>
66+
</dependency>
67+
<dependency>
68+
<groupId>io.openmessaging.storage</groupId>
69+
<artifactId>dledger</artifactId>
70+
<version>${project.version}</version>
71+
</dependency>
6372
<dependency>
6473
<groupId>org.slf4j</groupId>
6574
<artifactId>slf4j-simple</artifactId>

proxy/pom.xml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,32 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<parent>
4-
<artifactId>dledger-parent</artifactId>
4+
<artifactId>dledger-all</artifactId>
55
<groupId>io.openmessaging.storage</groupId>
66
<version>0.2.8-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

10-
<artifactId>proxy</artifactId>
10+
<artifactId>dledger-proxy</artifactId>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
</properties>
1515

1616
<dependencies>
17-
1817
<dependency>
1918
<groupId>io.openmessaging.storage</groupId>
2019
<artifactId>dledger</artifactId>
21-
<version>${project.version}</version>
2220
</dependency>
23-
21+
<dependency>
22+
<groupId>org.yaml</groupId>
23+
<artifactId>snakeyaml</artifactId>
24+
</dependency>
2425
<dependency>
2526
<groupId>org.slf4j</groupId>
2627
<artifactId>slf4j-simple</artifactId>
2728
<scope>test</scope>
2829
</dependency>
29-
30-
<dependency>
31-
<groupId>org.yaml</groupId>
32-
<artifactId>snakeyaml</artifactId>
33-
</dependency>
3430
<dependency>
3531
<groupId>org.mockito</groupId>
3632
<artifactId>mockito-core</artifactId>

0 commit comments

Comments
 (0)