Skip to content

Commit

Permalink
JAVA-16561: Fix references to parents (eugenp#13222)
Browse files Browse the repository at this point in the history
  • Loading branch information
freelansam committed Jan 9, 2023
1 parent b24d471 commit 1e0a14b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions kubernetes-modules/kubernetes-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.5</version>
<relativePath /> <!-- lookup parent from repository -->
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
</parent>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class DemoApplicationTests {
class SpringContextTest {

@Test
void contextLoads() {
Expand Down

0 comments on commit 1e0a14b

Please sign in to comment.