Rename the package: <module>core-java-11-</module> to project

This commit is contained in:
YuCheng Hu 2022-05-13 14:44:21 -04:00
parent 1ea362f453
commit 93611de36d
20 changed files with 27 additions and 22 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.ossez;
/**
* Hello world!

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.ossez;
import java.lang.reflect.Method;

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/java --source 11
package com.ossez.baeldung; #!/usr/local/bin/java --source 11
import java.util.Arrays;

View File

@ -1,4 +1,4 @@
package com.baeldung.benchmark;
package com.ossez.benchmark;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.list.primitive.IntList;

View File

@ -1,4 +1,4 @@
package com.baeldung.benchmark;
package com.ossez.benchmark;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.list.primitive.IntList;

View File

@ -1,4 +1,4 @@
package com.baeldung.epsilongc;
package com.ossez.epsilongc;
public class MemoryPolluter {

View File

@ -3,7 +3,7 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.baeldung.java11.httpclient;
package com.ossez.java11.httpclient;
import java.io.IOException;
import java.net.URI;

View File

@ -1,4 +1,4 @@
package com.baeldung.predicate.not;
package com.ossez.predicate.not;
public class Person {
private static final int ADULT_AGE = 18;

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.ossez;
import junit.framework.Test;
import junit.framework.TestCase;

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.ossez;
import static org.hamcrest.CoreMatchers.is;

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.ossez;
import static org.junit.Assert.assertTrue;
import static org.hamcrest.CoreMatchers.is;
@ -6,11 +6,13 @@ import static org.hamcrest.CoreMatchers.is;
import java.util.Arrays;
import java.util.Set;
import java.util.stream.Collectors;
import com.ossez.Outer;
import org.junit.Test;
public class OuterUnitTest {
private static final String NEST_HOST_NAME = "com.baeldung.Outer";
private static final String NEST_HOST_NAME = "Outer";
@Test
public void whenGetNestHostFromOuter_thenGetNestHost() {
@ -40,7 +42,7 @@ public class OuterUnitTest {
is(nestMembers.size()).equals(2);
assertTrue(nestMembers.contains("com.baeldung.Outer"));
assertTrue(nestMembers.contains("com.baeldung.Outer$Inner"));
assertTrue(nestMembers.contains("Outer"));
assertTrue(nestMembers.contains("Outer$Inner"));
}
}

View File

@ -1,5 +1,6 @@
package com.baeldung.benchmark;
package com.ossez.benchmark;
import com.ossez.benchmark.IntegerListFilter;
import org.junit.Before;
import org.junit.Test;

View File

@ -1,5 +1,6 @@
package com.baeldung.benchmark;
package com.ossez.benchmark;
import com.ossez.benchmark.IntegerListSum;
import org.junit.Before;
import org.junit.Test;

View File

@ -1,4 +1,4 @@
package com.baeldung.java11.httpclient.test;
package com.ossez.java11.httpclient.test;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.equalTo;

View File

@ -1,4 +1,4 @@
package com.baeldung.java11.httpclient.test;
package com.ossez.java11.httpclient.test;
import static java.time.temporal.ChronoUnit.SECONDS;
import static org.hamcrest.CoreMatchers.containsString;

View File

@ -1,4 +1,4 @@
package com.baeldung.java11.httpclient.test;
package com.ossez.java11.httpclient.test;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertNotNull;

View File

@ -1,4 +1,4 @@
package com.baeldung.patternreuse;
package com.ossez.patternreuse;
import org.junit.jupiter.api.Test;

View File

@ -1,4 +1,4 @@
package com.baeldung.predicate.not;
package com.ossez.predicate.not;
import java.util.Arrays;
import java.util.List;
@ -6,6 +6,7 @@ import java.util.stream.Collectors;
import static java.util.function.Predicate.not;
import com.ossez.predicate.not.Person;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;