-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 1022 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
38
39
plugins {
id 'java'
id 'application'
id 'edu.sc.seis.launch4j' version '2.4.6'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}
group 'online.vonarx'
version = '0.1.2-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_12
targetCompatibility = JavaVersion.VERSION_12
mainClassName = 'online.vonarx.Main'
createExe {
headerType = 'console'
jar = 'lib/' + project.tasks.shadowJar.archiveName
bundledJrePath = 'D:\\tools\\open-jdk\\jdk-13.0.2'
bundledJre64Bit = true
copyConfigurable = project.tasks.shadowJar.outputs.files
}
repositories {
mavenCentral()
}
dependencies {
// APIs
implementation 'commons-io:commons-io:2.6'
implementation 'com.mitchtalmadge:ascii-data:1.4.0'
implementation 'com.beust:jcommander:1.78'
implementation 'com.google.guava:guava:29.0-jre'
// Framework
implementation 'com.google.dagger:dagger:2.26'
annotationProcessor 'com.google.dagger:dagger-compiler:2.26'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
}