-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
51 lines (44 loc) · 1.09 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
plugins {
id 'application'
}
mainClassName = 'MindViewerTest.Main'
repositories {
flatDir {
dirs 'libs'
dirs '../cst/build/libs'
dirs '../cst-desktop/build/libs'
}
jcenter()
mavenCentral()
maven {
url "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
}
maven {
url "https://repository.springsource.com/maven/bundles/release"
}
maven {
url "https://repository.springsource.com/maven/bundles/external"
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'com.github.CST-Group:cst-desktop:1.0.5'
// implementation ':cst-desktop:1.0.4-full'
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveClassifier = 'full'
manifest {
attributes(
'Main-Class': mainClassName
)
}
from sourceSets.main.output
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}