xpipe/samples/sample_program/build.gradle
Christopher Schnick 4dc685f895 Release fixes
2022-06-18 01:17:08 +02:00

28 lines
No EOL
633 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('../../misc/version').text
dependencies {
implementation project(':core')
implementation project(':api')
}
application {
mainModule = 'io.xpipe.sample'
mainClass = 'io.xpipe.sample.HomePricesSample'
}