Plex-FAWE/buildSrc/src/main/kotlin/Versions.kt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
317 B
Kotlin
Raw Normal View History

2021-01-21 12:07:17 +00:00
/*
import org.gradle.api.Project
// Properties that need a project reference to resolve:
class ProjectVersions(project: Project) {
val loom = project.rootProject.property("loom.version")
val mixin = project.rootProject.property("mixin.version")
}
val Project.versions
get() = ProjectVersions(this)
2021-01-21 12:07:17 +00:00
*/