mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-02-04 09:14:59 +01:00
0a1340f107
- Convert existing binary plugins to kotlin - Move each plugin to a different package
44 lines
1.3 KiB
Text
44 lines
1.3 KiB
Text
plugins {
|
|
id("groovy-gradle-plugin")
|
|
id("java-gradle-plugin")
|
|
kotlin("jvm") version "1.9.20"
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://maven.minecraftforge.net/") {
|
|
name = "MinecraftForge"
|
|
}
|
|
maven("https://maven.architectury.dev/") {
|
|
name = "Architectury"
|
|
}
|
|
maven("https://repo.spongepowered.org/repository/maven-public")
|
|
maven("https://maven.parchmentmc.org")
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("platformPlugin") {
|
|
id = "flywheel.platform"
|
|
implementationClass = "com.jozufozu.gradle.PlatformPlugin"
|
|
}
|
|
create("jarSetPlugin") {
|
|
id = "flywheel.jar-sets"
|
|
implementationClass = "com.jozufozu.gradle.jarset.JarSetPlugin"
|
|
}
|
|
create("packageInfosPlugin") {
|
|
id = "flywheel.package-infos"
|
|
implementationClass = "com.jozufozu.gradle.nullability.PackageInfosPlugin"
|
|
}
|
|
create("transitiveSourceSetsPlugin") {
|
|
id = "flywheel.transitive-source-sets"
|
|
implementationClass = "com.jozufozu.gradle.transitive.TransitiveSourceSetsPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("dev.architectury.loom:dev.architectury.loom.gradle.plugin:1.6-SNAPSHOT")
|
|
}
|