JAVA-12097: moved algorithms-sorting inside algorithms-module

This commit is contained in:
sampadawagde 2022-05-20 20:30:56 +05:30
parent edb880df59
commit ddb21dd81b
27 changed files with 7 additions and 8 deletions

View File

@ -9,7 +9,7 @@
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<artifactId>algorithms-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

View File

@ -1,4 +1,4 @@
package com.baeldung.bucketsort;
package com.baeldung.algorithms.bucketsort;
import java.util.ArrayList;
import java.util.Comparator;

View File

@ -1,4 +1,4 @@
package com.baeldung.bucketsort;
package com.baeldung.algorithms.bucketsort;
import java.util.List;

View File

@ -1,13 +1,12 @@
package com.baeldung.bucketsort;
package com.baeldung.algorithms.bucketsort;
import com.baeldung.bucketsort.IntegerBucketSorter;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import java.util.Arrays;
import java.util.List;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.Test;
public class IntegerBucketSorterUnitTest {