BAEL-7091

Moved to new module
This commit is contained in:
parthiv39731 2023-11-10 20:51:43 +05:30
parent e9431ce416
commit cd9ab90fc8
4 changed files with 15 additions and 15 deletions

View File

@ -6,18 +6,6 @@
<artifactId>hamcrest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hamcrest</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
<packaging>jar</packaging>
<parent>

View File

@ -4,6 +4,18 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>testing-assertions</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<groupId>com.baeldung</groupId>

View File

@ -1,11 +1,11 @@
package com.baeldung.hamcrest.assertnestedmap;
package com.baeldung.assertnestedmap;
import org.junit.jupiter.api.Test;
import java.util.Map;
import static com.baeldung.hamcrest.assertnestedmap.matchers.NestedMapMatcher.hasNestedMapEntry;
import static com.baeldung.assertnestedmap.matchers.NestedMapMatcher.hasNestedMapEntry;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,4 +1,4 @@
package com.baeldung.hamcrest.assertnestedmap.matchers;
package com.baeldung.assertnestedmap.matchers;
import org.hamcrest.Description;