-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.02 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
repositories {
mavenCentral()
}
def possiblePluginPaths = [
'/opt/eclipse/plugins',
'/usr/share/eclipse/plugins',
'/usr/lib/eclipse/plugins'
]
def pluginPath = ''
possiblePluginPaths.each { it ->
if (new File(it).exists()) {
pluginPath = it
}
}
if (pluginPath.isEmpty()) {
throw new InvalidUserDataException('No eclipse installation found')
}
def eclipseJars = [
'org.eclipse.jdt.core_*.jar',
'org.eclipse.core.runtime_*.jar',
'org.eclipse.core.jobs_*.jar',
'org.eclipse.core.contenttype_*.jar',
'org.eclipse.core.resources_*.jar',
'org.eclipse.equinox.common_*.jar',
'org.eclipse.equinox.preferences_*.jar',
'org.eclipse.osgi_*.jar',
'org.eclipse.text_*.jar'
]
dependencies {
compile (
'commons-io:commons-io:2.5',
'org.apache.commons:commons-lang3:3.4',
fileTree (dir: pluginPath, includes: eclipseJars)
)
}
mainClassName = 'envision.java.importtool.Main'