xpipe/samples/sample_program/build.gradle

28 lines
628 B
Groovy
Raw Normal View History

2022-01-02 08:11:13 +13:00
plugins {
id 'application'
}
java {
modularity.inferModulePath = true
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
2022-03-11 07:38:57 +13:00
// 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
2022-01-02 08:11:13 +13:00
dependencies {
implementation project(':core')
2022-01-10 19:10:44 +13:00
implementation project(':api')
2022-01-03 11:13:10 +13:00
}
application {
mainModule = 'io.xpipe.sample'
mainClass = 'io.xpipe.sample.HomePricesSample'
2022-01-02 08:11:13 +13:00
}