修改项目到不同的路径

This commit is contained in:
YuCheng Hu 2021-09-23 14:03:26 -04:00
parent 3984d49417
commit 8470f8bf9f
62 changed files with 10 additions and 5 deletions

View File

@ -12,7 +12,6 @@
<groupId>com.ossez</groupId>
<artifactId>parent-java</artifactId>
<version>0.0.2-SNAPSHOT</version>
<relativePath>../parent-java</relativePath>
</parent>
<dependencies>

View File

@ -1,12 +1,10 @@
package com.ossez.algorithms.primechecker;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class PrimeCheckerUnitTest {
private final BigIntegerPrimeChecker primeChecker = new BigIntegerPrimeChecker();

View File

@ -6,6 +6,8 @@ import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
import static com.ossez.lcm.PrimeFactorizationAlgorithm.*;
public class PrimeFactorizationAlgorithmUnitTest {

View File

@ -3,6 +3,8 @@ package com.ossez.lcm;
import org.junit.Assert;
import org.junit.Test;
import static com.ossez.lcm.SimpleAlgorithm.*;
public class SimpleAlgorithmUnitTest {
@Test

View File

@ -10,8 +10,7 @@
<parent>
<groupId>com.ossez</groupId>
<artifactId>parent-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-java</relativePath>
<version>0.0.2-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -14,6 +14,11 @@
<version>0.0.2-SNAPSHOT</version>
</parent>
<modules>
<module>java-numbers</module>
<module>java-numbers-2</module>
</modules>
<dependencies>
<!-- utils -->
<dependency>