mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 05:27:43 -05:00
Change plugin ID to "dev.architectury.loom"
This commit is contained in:
12
build.gradle
12
build.gradle
@@ -17,7 +17,7 @@ plugins {
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
|
||||
group = 'me.shedaniel'
|
||||
group = "dev.architectury"
|
||||
archivesBaseName = project.name
|
||||
def baseVersion = '0.7.1'
|
||||
def runNumber = System.getenv("GITHUB_RUN_NUMBER") ?: "9999"
|
||||
@@ -181,7 +181,7 @@ codenarc {
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
fabricLoom {
|
||||
id = 'forgified-fabric-loom'
|
||||
id = 'dev.architectury.loom'
|
||||
implementationClass = 'net.fabricmc.loom.LoomGradlePlugin'
|
||||
}
|
||||
}
|
||||
@@ -214,8 +214,8 @@ import org.w3c.dom.Node
|
||||
publishing {
|
||||
publications {
|
||||
plugin(MavenPublication) {
|
||||
groupId 'forgified-fabric-loom'
|
||||
artifactId 'forgified-fabric-loom.gradle.plugin'
|
||||
groupId 'dev.architectury.loom'
|
||||
artifactId 'dev.architectury.loom.gradle.plugin'
|
||||
|
||||
from components.java
|
||||
artifact mainJar
|
||||
@@ -246,8 +246,8 @@ publishing {
|
||||
}
|
||||
|
||||
pluginSnapshot(MavenPublication) {
|
||||
groupId 'forgified-fabric-loom'
|
||||
artifactId 'forgified-fabric-loom.gradle.plugin'
|
||||
groupId 'dev.architectury.loom'
|
||||
artifactId 'dev.architectury.loom.gradle.plugin'
|
||||
version baseVersion + '-SNAPSHOT'
|
||||
|
||||
pom.withXml {
|
||||
|
||||
@@ -1 +1 @@
|
||||
rootProject.name = "forgified-fabric-loom"
|
||||
rootProject.name = "architectury-loom"
|
||||
|
||||
@@ -34,7 +34,7 @@ import net.fabricmc.loom.configuration.RemappedConfigurationEntry;
|
||||
import net.fabricmc.loom.util.gradle.GradleSupport;
|
||||
|
||||
public class Constants {
|
||||
public static final String PLUGIN_ID = "forgified-fabric-loom";
|
||||
public static final String PLUGIN_ID = "dev.architectury.loom";
|
||||
public static final String LIBRARIES_BASE = "https://libraries.minecraft.net/";
|
||||
public static final String RESOURCES_BASE = "http://resources.download.minecraft.net/";
|
||||
public static final String VERSION_MANIFESTS = "https://launchermeta.mojang.com/mc/game/version_manifest_v2.json";
|
||||
|
||||
Reference in New Issue
Block a user