This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
93 lines (74 loc) · 2.49 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
buildscript {
}
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.10' apply false
//id 'org.beryx.jlink' version '2.12.0'
id 'application'
}
allprojects {
apply plugin: 'java'
apply plugin: 'org.openjfx.javafxplugin'
//apply plugin: 'org.beryx.jlink'
apply plugin: 'application'
}
subprojects {
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
//mavenLocal()
jcenter()
}
dependencies {
// compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
//compile files('../libs/json-simple-1.1.1.jar')
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'org.jetbrains:annotations:19.0.0'
// testCompile group: 'junit', name: 'junit', version: '4.12'
testImplementation ('junit:junit:4.12')
//compile "org.openjfx:javafx-fxml:11.0.1"
compile 'org.apache.logging.log4j:log4j-core:2.11.1'
compile files('../libs/scenicview.jar')
implementation 'org.yaml:snakeyaml:1.28'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation 'org.controlsfx:controlsfx:11.1.0'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.6'
compile 'com.cathive.fonts:fonts-fontawesome:3.2.1.0'
implementation 'io.github.palexdev:materialfx:11.12.0'
}
javafx {
version = "14"
modules = [ 'javafx.controls', 'javafx.base', 'javafx.graphics', 'javafx.fxml', 'javafx.swing', 'javafx.web']
}
}
project(':je-1165') {
dependencies {
compile project (':')
compile project(':ezcommand-program')
}
}
group 'kr.kro.ezcommand'
version 'Alpha-0.2'
/*configurations {
compileOnly {
exclude group: 'org.hamcrest', module: 'junit'
}
}*/
//mainClassName = "kr.kro.ezcommand.MainExecutor"
/*jlink {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'helloFX'
}
forceMerge('log4j-api')
jpackage {
if (org.gradle.internal.os.OperatingSystem.current().windows) {
installerOptions += ['--win-per-user-install', '--win-dir-chooser', '--win-menu', '--win-shortcut']
}
}
}*/
//sourceSets.main.resources {
// srcDirs = ["src/main/java"]; //assume that your java classes are inside this path
// exclude "**/*.java"
//}
//mainClassName = 'kr.kro.ezcommand.MainExecutor'