cloudflare-tunnels-plugin/build.gradle

35 lines
618 B
Groovy
Raw Permalink Normal View History

2024-12-15 01:00:06 -05:00
plugins {
id 'java'
}
2025-01-12 10:21:40 -05:00
group = "dev.ivycollective"
version = project.version
2024-12-15 01:00:06 -05:00
repositories {
mavenCentral()
maven {
name = 'papermc'
url = 'https://repo.papermc.io/repository/maven-public/'
}
}
dependencies {
compileOnly "io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT"
}
java {
2025-01-12 10:21:40 -05:00
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
toolchain {
languageVersion = JavaLanguageVersion.of(21)
2024-12-15 01:00:06 -05:00
}
2025-01-12 10:21:40 -05:00
}
processResources {
filesMatching("plugin.yml") {
expand(
"version": project.version
)
}
}