Skip to content

Commit 1fd9d26

Browse files
committed
Fixing relative paths of several projects
1 parent 5e8c69d commit 1fd9d26

File tree

6 files changed

+6
-4
lines changed
  • graphql/graphql-java
  • spring-boot-custom-starter/greeter-spring-boot-sample-app
  • spring-boot-parent/spring-boot-with-custom-parent
  • spring-boot-runtime
  • spring-jinq

6 files changed

+6
-4
lines changed

graphql/graphql-java/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<groupId>com.baeldung</groupId>
1212
<artifactId>parent-modules</artifactId>
1313
<version>1.0.0-SNAPSHOT</version>
14+
<relativePath>../..</relativePath>
1415
</parent>
1516

1617
<dependencies>

spring-boot-custom-starter/greeter-spring-boot-sample-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>com.baeldung</groupId>
1111
<artifactId>parent-boot-1</artifactId>
1212
<version>0.0.1-SNAPSHOT</version>
13-
<relativePath>../../spring-boot-custom-starter</relativePath>
13+
<relativePath>../../parent-boot-1</relativePath>
1414
</parent>
1515

1616
<dependencies>

spring-boot-parent/spring-boot-with-custom-parent/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<groupId>com.baeldung</groupId>
1212
<artifactId>parent-boot-2</artifactId>
1313
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../../parent-boot-2</relativePath>
1415
</parent>
1516

1617
<dependencies>

spring-boot-runtime/disabling-console-logback/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>spring-boot-disable-console-logging</artifactId>
11+
<artifactId>spring-boot-runtime</artifactId>
1212
<version>0.0.1-SNAPSHOT</version>
13-
<relativePath>../</relativePath>
1413
</parent>
1514

1615
<dependencies>

spring-boot-runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>spring-boot-runtime</artifactId>
66
<name>spring-boot-runtime</name>
7-
<packaging>war</packaging>
7+
<packaging>pom</packaging>
88
<description>Demo project for Spring Boot</description>
99

1010
<parent>

spring-jinq/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<groupId>com.baeldung</groupId>
1212
<artifactId>parent-boot-1</artifactId>
1313
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-boot-1</relativePath>
1415
</parent>
1516

1617
<dependencies>

0 commit comments

Comments
 (0)