mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
28 lines
456 B
Groovy
28 lines
456 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
sourceSets {
|
|
boot {
|
|
|
|
}
|
|
main {
|
|
compileClasspath += sourceSets.boot.output
|
|
runtimeClasspath += sourceSets.boot.output
|
|
}
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
distributionPlugin {
|
|
id = "brainwine.distribution"
|
|
implementationClass = "brainwine.build.DistributionPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
jar {
|
|
from sourceSets.boot.output
|
|
}
|
|
|
|
version = '1.0.0-SNAPSHOT'
|