mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-13 05:54:01 +01:00
36 lines
903 B
Groovy
36 lines
903 B
Groovy
plugins {
|
|
id 'groovy-gradle-plugin'
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven {
|
|
name = 'MinecraftForge'
|
|
url = 'https://maven.minecraftforge.net/'
|
|
}
|
|
maven {
|
|
name = 'Architectury'
|
|
url = 'https://maven.architectury.dev/'
|
|
}
|
|
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
|
|
maven { url = 'https://maven.parchmentmc.org' }
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
platformPlugin {
|
|
id = 'flywheel.platform'
|
|
implementationClass = 'com.jozufozu.gradle.PlatformPlugin'
|
|
}
|
|
outgoingConfigurationPlugin {
|
|
id = 'flywheel.outgoing-configuration'
|
|
implementationClass = 'com.jozufozu.gradle.OutgoingConfigurationPlugin'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'dev.architectury.loom:dev.architectury.loom.gradle.plugin:1.6-SNAPSHOT'
|
|
}
|