mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-22 23:49:09 -04:00
18 lines
304 B
Groovy
18 lines
304 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
java {
|
|
modularity.inferModulePath = true
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':api')
|
|
implementation project(':core')
|
|
} |