-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
34 lines (29 loc) · 1.2 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
apply plugin: 'groovy'
targetCompatibility='1.8'
libsDirName = "${rootDir}/lib"
clean.doFirst { delete "${rootDir}/lib" }
repositories {
mavenCentral()
flatDir name: 'localGitDepsRepository',
dirs: [
"${rootDir}/../freeplane/BIN",
"${rootDir}/../freeplane/BIN/core/org.freeplane.core/lib",
"${rootDir}/../freeplane/BIN/plugins/org.freeplane.plugin.script/lib"
]
}
dependencies {
compile name: 'freeplanelauncher'
compile name: 'freeplaneviewer'
compile group: 'org.freeplane.script', name: 'plugin', version: '+'
compile ('org.codehaus.groovy:groovy-all:2.5.4') {
exclude group:'org.codehaus.groovy', module:'groovy-test'
exclude group:'org.codehaus.groovy', module:'groovy-test-junit5'
exclude group:'org.codehaus.groovy', module:'groovy-testng'
exclude group:'org.codehaus.groovy', module:'groovy-ant'
exclude group:'org.codehaus.groovy', module:'groovy-docgenerator'
exclude group:'org.codehaus.groovy', module:'groovy-groovydoc'
exclude group:'org.codehaus.groovy', module:'groovy-cli-commons'
exclude group:'org.codehaus.groovy', module:'groovy-cli-picocli'
}
compile 'org.codehaus.groovy:groovy-dateutil:2.5.4'
}