-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (28 loc) · 765 Bytes
/
build.gradle
File metadata and controls
35 lines (28 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
group 'com.basic4gl'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.12'
}
// prepare input directory for jpackage distribution builds
tasks.register('copyJarsForJPackage', Copy) {
dependsOn 'build'
dependsOn ':app:jar'
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from project(":app").layout.buildDirectory.dir("libs")
into layout.buildDir.dir("libs")
from project(":library").layout.buildDirectory.dir("libs")
into layout.buildDir.dir("libs")
from project(":debugServer").layout.buildDirectory.dir("libs")
into layout.buildDir.dir("libs")
}