Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ repositories {
maven { url "https://maven.shedaniel.me/" }
gradlePluginPortal()
mavenLocal()
maven { url 'https://jitpack.io' }
}

apply plugin: 'java-gradle-plugin'
Expand Down Expand Up @@ -91,7 +92,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.72"
implementation "gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:0.10"
implementation "dev.architectury:architectury-transformer:$transformer_version"
implementation 'com.github.hellomouse:architectury-transformer:fix-booting-with-dependencies-that-arent-present-SNAPSHOT'
loom06CompileOnly "me.shedaniel:forgified-fabric-loom:$loom_version_06"
loom09CompileOnly "dev.architectury:architectury-loom:$loom_version_09"
loom010LegacyCompileOnly "dev.architectury:architectury-loom:$loom_version_010Legacy"
Expand Down
8 changes: 4 additions & 4 deletions src/main/kotlin/dev/architectury/plugin/ArchitecturyPluginExtension.kt
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import java.util.jar.JarOutputStream
import java.util.jar.Manifest

open class ArchitectPluginExtension(val project: Project) {
var transformerVersion = "5.2.81"
var transformerVersion = "fix-booting-with-dependencies-that-arent-present-SNAPSHOT"
var injectablesVersion = "1.0.10"
var minecraft = ""
private var compileOnly = false
Expand Down Expand Up @@ -195,17 +195,17 @@ open class ArchitectPluginExtension(val project: Project) {
}
add(
customRuntimeClasspath.name,
"dev.architectury:architectury-transformer:$transformerVersion:runtime"
"com.github.hellomouse:architectury-transformer:$transformerVersion:runtime"
)
} else {
add(
JavaPlugin.RUNTIME_CLASSPATH_CONFIGURATION_NAME,
"dev.architectury:architectury-transformer:$transformerVersion:runtime"
"com.github.hellomouse:architectury-transformer:$transformerVersion:runtime"
)
}
add(
"architecturyJavaAgents",
"dev.architectury:architectury-transformer:$transformerVersion:agent"
"com.github.hellomouse:architectury-transformer:$transformerVersion:agent"
)
if (plsAddInjectables && injectInjectables) {
add(
Expand Down