-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (31 loc) · 872 Bytes
/
build.gradle
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
36
37
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
group 'tech.quilldev'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation files("libs/KanjiTomoOCR.jar")
implementation group: 'com.github.michaelgantman', name: 'MgntUtils', version: '1.5.1.2'
implementation 'net.java.dev.jna:jna:5.7.0'
implementation 'net.java.dev.jna:jna-platform:5.7.0'
implementation group: 'org.json', name: 'json', version: '20201115'
implementation group: 'com.jayway.jsonpath', name: 'json-path', version: '2.5.0'
}
javafx {
version = "15.0.1"
modules = [ 'javafx.controls' ]
}
jar {
manifest {
attributes 'Main-Class': 'Main'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
mainClassName = "Main"