Skip to content

Commit d331a6f

Browse files
committed
update links to docker article
1 parent c36cbb2 commit d331a6f

7 files changed

Lines changed: 19 additions & 49 deletions

File tree

docker-modules/docker-internal-dto/pom.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

docker-modules/docker-internal-dto/src/main/java/com/baeldung/docker/dto/VariableDto.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

docker-modules/docker-push-to-private-repo/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>docker-push-to-private-repo</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
87
<name>docker-push-to-private-repo</name>
98
<description>Example application to showcase how to push a docker image to a private repository</description>
109

1110
<parent>
12-
<groupId>com.baeldung.docker</groupId>
13-
<artifactId>docker-modules</artifactId>
14-
<version>0.0.1</version>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-boot-2</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../../parent-boot-2</relativePath>
1515
</parent>
1616

1717
<dependencies>

docker-modules/docker-sample-app/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
<name>docker-sample-app</name>
88
<description>Demo project for Spring Boot and Docker</description>
99

10-
<parent>
11-
<groupId>com.baeldung.docker</groupId>
12-
<artifactId>docker-modules</artifactId>
13-
<version>0.0.1</version>
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-boot-2</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../../parent-boot-2</relativePath>
1415
</parent>
1516

1617
<dependencies>

docker-modules/docker-spring-boot-postgres/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.baeldung.docker</groupId>
6+
<groupId>com.baeldung</groupId>
77
<artifactId>docker-spring-boot-postgres</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
<name>docker-spring-boot-postgres</name>

docker-modules/docker-spring-boot/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
<name>docker-spring-boot</name>
88
<description>Demo project showing Spring Boot and Docker</description>
99

10-
<parent>
11-
<groupId>com.baeldung.docker</groupId>
12-
<artifactId>docker-modules</artifactId>
13-
<version>0.0.1</version>
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-boot-2</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../../parent-boot-2</relativePath>
1415
</parent>
1516

1617
<dependencies>

docker-modules/pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,19 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.baeldung.docker</groupId>
6+
<groupId>com.baeldung</groupId>
77
<artifactId>docker-modules</artifactId>
8-
<version>0.0.1</version>
8+
<version>1.0.0-SNAPSHOT</version>
99
<name>docker-modules</name>
10-
<description>Demo project showing Spring Boot and Docker</description>
1110
<packaging>pom</packaging>
1211

1312
<parent>
1413
<groupId>com.baeldung</groupId>
15-
<artifactId>parent-boot-2</artifactId>
16-
<version>0.0.1-SNAPSHOT</version>
17-
<relativePath>../parent-boot-2</relativePath>
14+
<artifactId>parent-modules</artifactId>
15+
<version>1.0.0-SNAPSHOT</version>
1816
</parent>
1917

2018
<modules>
21-
<module>docker-internal-dto</module>
2219
<module>docker-spring-boot</module>
2320
<module>docker-sample-app</module>
2421
<module>docker-caching/single-module-caching</module>

0 commit comments

Comments
 (0)