xpipe/samples/sample_program/build.gradle
Christopher Schnick 770d7be208 Prepare workflows
2022-03-10 19:38:57 +01:00

28 lines
628 B
Groovy

plugins {
id 'application'
}
java {
modularity.inferModulePath = true
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
// The used X-Pipe API version.
// In your case, you have to fix this value to the target API version,
// which you can find at https://search.maven.org/artifact/io.xpipe/api/
def apiVersion = file('../../version').text
dependencies {
implementation project(':core')
implementation project(':api')
}
application {
mainModule = 'io.xpipe.sample'
mainClass = 'io.xpipe.sample.HomePricesSample'
}