forked from joe-chacko/elph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (26 loc) · 689 Bytes
/
build.gradle
File metadata and controls
33 lines (26 loc) · 689 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
plugins {
id 'application'
}
application {
mainClass = 'io.openliberty.elph.Main'
}
repositories {
mavenCentral()
}
tasks.named('wrapper') {
jarFile = rootProject.file('.gradle-wrapper/gradle-wrapper.jar')
}
java {
sourceCompatibility = '17'
targetCompatibility = '17'
}
group 'io.openliberty'
version '1.0-SNAPSHOT'
dependencies {
implementation 'org.jgrapht:jgrapht-core:1.5.1'
implementation 'info.picocli:picocli:4.7.4'
implementation 'org.osgi:osgi.core:8.0.0'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'org.apache.commons:commons-lang3:3.8'
implementation 'biz.aQute.bnd:biz.aQute.bnd:6.4.1'
}