Change package to net.tcgdex

This commit is contained in:
Maxopoly 2021-11-04 17:47:13 +01:00
parent bee1b6d71e
commit a91d254080
16 changed files with 35 additions and 32 deletions

View File

@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.github.tcgdex</groupId> <groupId>net.tcgdex</groupId>
<artifactId>tcgdex</artifactId> <artifactId>tcgdex</artifactId>

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
public enum Categories { public enum Categories {

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
public enum Rarities { public enum Rarities {

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.List; import java.util.List;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import org.json.JSONObject; import org.json.JSONObject;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.format.DateTimeFormatter; import java.time.format.DateTimeFormatter;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;

View File

@ -1,4 +1,4 @@
package com.github.tcgdex; package net.tcgdex;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -1,21 +1,10 @@
package com.github.tcgdex; package net.tcgdex;
import org.junit.Test; import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import com.github.tcgdex.Ability; import static org.junit.Assert.assertFalse;
import com.github.tcgdex.Attack; import static org.junit.Assert.assertNotNull;
import com.github.tcgdex.CardInfo; import static org.junit.Assert.assertTrue;
import com.github.tcgdex.Categories;
import com.github.tcgdex.Rarities;
import com.github.tcgdex.SeriesInfo;
import com.github.tcgdex.SetInfo;
import com.github.tcgdex.SetResume;
import com.github.tcgdex.TCGDexAPI;
import com.github.tcgdex.Types;
import com.github.tcgdex.Weakness;
import com.github.tcgdex.TCGDexAPI.Language;
import static org.junit.Assert.*;
import java.io.IOException; import java.io.IOException;
import java.time.Month; import java.time.Month;
@ -23,6 +12,20 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Before; import org.junit.Before;
import org.junit.Test;
import net.tcgdex.Ability;
import net.tcgdex.Attack;
import net.tcgdex.CardInfo;
import net.tcgdex.Categories;
import net.tcgdex.Rarities;
import net.tcgdex.SeriesInfo;
import net.tcgdex.SetInfo;
import net.tcgdex.SetResume;
import net.tcgdex.TCGDexAPI;
import net.tcgdex.Types;
import net.tcgdex.Weakness;
import net.tcgdex.TCGDexAPI.Language;
public class TestAPI { public class TestAPI {