JAVA-15789: Fix references to parents (#12951)
* JAVA-15789: Fix references to parents * Update pom.xml
This commit is contained in:
parent
ce4b255177
commit
fffc0bc704
|
@ -8,4 +8,4 @@
|
|||
<version>1.0.0-SNAPSHOT</version>
|
||||
<name>design-patterns-cloud</name>
|
||||
<packaging>pom</packaging>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -6,10 +6,9 @@
|
|||
<artifactId>java-mongodb-queries</artifactId>
|
||||
|
||||
<parent>
|
||||
<artifactId>parent-modules</artifactId>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>persistence-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -8,6 +8,12 @@
|
|||
<name>jakarta-ee</name>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>web-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jakarta.platform</groupId>
|
||||
|
|
|
@ -7,7 +7,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
/**
|
||||
* Dummy Test
|
||||
*/
|
||||
public class AppTest {
|
||||
public class AppUnitTest {
|
||||
|
||||
@Test
|
||||
public void test() {
|
Loading…
Reference in New Issue