move to domain maven group
This commit is contained in:
parent
dfcad64308
commit
fbba141ba9
|
@ -5,7 +5,7 @@ plugins {
|
|||
`maven-publish`
|
||||
}
|
||||
|
||||
group = "org.ecorous.frogmc"
|
||||
group = "dev.frogmc"
|
||||
version = "1.0.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
|
@ -33,7 +33,7 @@ publishing {
|
|||
repositories {
|
||||
maven {
|
||||
name = "FrogMCSnapshotsMaven"
|
||||
url = uri("https://maven-frogmc.ecorous.org/snapshots")
|
||||
url = uri("https://maven.frogmc.dev/snapshots")
|
||||
credentials(PasswordCredentials::class)
|
||||
authentication {
|
||||
create<BasicAuthentication>("basic")
|
||||
|
@ -42,7 +42,7 @@ publishing {
|
|||
|
||||
maven {
|
||||
name = "FrogMCReleasesMaven"
|
||||
url = uri("https://maven-frogmc.ecorous.org/releases")
|
||||
url = uri("https://maven.frogmc.dev/releases")
|
||||
credentials(PasswordCredentials::class)
|
||||
authentication {
|
||||
create<BasicAuthentication>("basic")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine;
|
||||
package dev.frogmc.thyroxine;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine;
|
||||
package dev.frogmc.thyroxine;
|
||||
|
||||
import com.google.gson.JsonObject;
|
||||
import lombok.experimental.UtilityClass;
|
||||
|
@ -12,7 +12,7 @@ import java.util.HashMap;
|
|||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
|
||||
import static org.ecorous.frogmc.thyroxine.Constants.GSON;
|
||||
import static dev.frogmc.thyroxine.Constants.GSON;
|
||||
|
||||
@UtilityClass
|
||||
public class HttpHelper {
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine;
|
||||
package dev.frogmc.thyroxine;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.*;
|
||||
|
@ -9,13 +9,13 @@ import java.util.concurrent.ConcurrentHashMap;
|
|||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import org.ecorous.frogmc.thyroxine.api.Mapper;
|
||||
import org.ecorous.frogmc.thyroxine.api.ParameterClassRemapper;
|
||||
import org.ecorous.frogmc.thyroxine.api.data.MappingData;
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Parchment;
|
||||
import org.ecorous.frogmc.thyroxine.parser.ProguardParser;
|
||||
import org.ecorous.frogmc.thyroxine.provider.MojmapProvider;
|
||||
import org.ecorous.frogmc.thyroxine.provider.ParchmentProvider;
|
||||
import dev.frogmc.thyroxine.api.ParameterClassRemapper;
|
||||
import dev.frogmc.thyroxine.parser.ProguardParser;
|
||||
import dev.frogmc.thyroxine.provider.MojmapProvider;
|
||||
import dev.frogmc.thyroxine.provider.ParchmentProvider;
|
||||
import dev.frogmc.thyroxine.api.Mapper;
|
||||
import dev.frogmc.thyroxine.api.data.MappingData;
|
||||
import dev.frogmc.thyroxine.api.data.Parchment;
|
||||
import org.objectweb.asm.ClassReader;
|
||||
import org.objectweb.asm.ClassVisitor;
|
||||
import org.objectweb.asm.ClassWriter;
|
|
@ -1,7 +1,7 @@
|
|||
package org.ecorous.frogmc.thyroxine.api;
|
||||
package dev.frogmc.thyroxine.api;
|
||||
|
||||
import org.ecorous.frogmc.thyroxine.api.data.MappingData;
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Member;
|
||||
import dev.frogmc.thyroxine.api.data.MappingData;
|
||||
import dev.frogmc.thyroxine.api.data.Member;
|
||||
import org.objectweb.asm.commons.Remapper;
|
||||
|
||||
import java.util.List;
|
|
@ -1,6 +1,6 @@
|
|||
package org.ecorous.frogmc.thyroxine.api;
|
||||
package dev.frogmc.thyroxine.api;
|
||||
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Parchment;
|
||||
import dev.frogmc.thyroxine.api.data.Parchment;
|
||||
import org.objectweb.asm.ClassVisitor;
|
||||
import org.objectweb.asm.MethodVisitor;
|
||||
import org.objectweb.asm.Opcodes;
|
|
@ -1,11 +1,11 @@
|
|||
package org.ecorous.frogmc.thyroxine.api;
|
||||
package dev.frogmc.thyroxine.api;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Locale;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Parchment;
|
||||
import dev.frogmc.thyroxine.api.data.Parchment;
|
||||
import org.objectweb.asm.Label;
|
||||
import org.objectweb.asm.MethodVisitor;
|
||||
import org.objectweb.asm.Opcodes;
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine.api.data;
|
||||
package dev.frogmc.thyroxine.api.data;
|
||||
|
||||
import org.objectweb.asm.Type;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine.api.data;
|
||||
package dev.frogmc.thyroxine.api.data;
|
||||
|
||||
public record Member(String owner, String name, String descriptor) {
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine.api.data;
|
||||
package dev.frogmc.thyroxine.api.data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
|
@ -1,7 +1,7 @@
|
|||
package org.ecorous.frogmc.thyroxine.parser;
|
||||
package dev.frogmc.thyroxine.parser;
|
||||
|
||||
import org.ecorous.frogmc.thyroxine.api.data.MappingData;
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Member;
|
||||
import dev.frogmc.thyroxine.api.data.MappingData;
|
||||
import dev.frogmc.thyroxine.api.data.Member;
|
||||
|
||||
public class ProguardParser {
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
package org.ecorous.frogmc.thyroxine.provider;
|
||||
package dev.frogmc.thyroxine.provider;
|
||||
|
||||
import com.google.gson.*;
|
||||
import org.ecorous.frogmc.thyroxine.Constants;
|
||||
import org.ecorous.frogmc.thyroxine.HttpHelper;
|
||||
import dev.frogmc.thyroxine.Constants;
|
||||
import dev.frogmc.thyroxine.HttpHelper;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.charset.StandardCharsets;
|
|
@ -1,4 +1,4 @@
|
|||
package org.ecorous.frogmc.thyroxine.provider;
|
||||
package dev.frogmc.thyroxine.provider;
|
||||
|
||||
import javax.xml.parsers.DocumentBuilderFactory;
|
||||
import javax.xml.parsers.ParserConfigurationException;
|
||||
|
@ -16,7 +16,7 @@ import java.security.MessageDigest;
|
|||
import java.security.NoSuchAlgorithmException;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import org.ecorous.frogmc.thyroxine.api.data.Parchment;
|
||||
import dev.frogmc.thyroxine.api.data.Parchment;
|
||||
import org.w3c.dom.Document;
|
||||
import org.xml.sax.SAXException;
|
||||
|
Loading…
Reference in a new issue