-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (28 loc) · 885 Bytes
/
build.gradle
File metadata and controls
33 lines (28 loc) · 885 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 'java'
}
group 'com.github.kayjamlang'
version '0.1.1'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/service/local/repositories/releases/content/"
}
}
jar {
manifest {
attributes(
'Main-Class': 'com.github.kayjamlang.executor.cli.Main'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
dependencies {
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'
//implementation group: 'com.github.kayjamlang', name: 'core', version: '0.1.2.1'
implementation group: 'com.github.kayjamlang', name: 'executor', version: '0.1.3.17-fix6'
implementation group: 'com.github.albfernandez', name: 'juniversalchardet', version: '2.4.0'
testCompile group: 'junit', name: 'junit', version: '4.13'
}