parent
e9431ce416
commit
cd9ab90fc8
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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.*;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.hamcrest.assertnestedmap.matchers;
|
||||
package com.baeldung.assertnestedmap.matchers;
|
||||
|
||||
|
||||
import org.hamcrest.Description;
|
Loading…
Reference in New Issue