-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (27 loc) · 932 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
try {
new URL('http://proxy.zuehlke.com/proxy.pac').text
System.properties['http.proxyHost'] = 'proxy.zuehlke.com'
System.properties['http.proxyPort'] = '8080'
} catch(Exception e) {
// Proxy not available, use direct access to the
}
"ln -s src/ buildSrc/src".execute().waitFor()
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: PluginDev
version = '0.4'
sourceCompatibility = '1.5'
targetCompatibility = '1.5'
repositories {
mavenCentral()
flatDir name:'gradle-libs', dirs: System.env.GRADLE_HOME + '/lib'
flatDir name:'gradle-plugins', dirs: System.env.GRADLE_HOME + '/lib/plugins'
}
dependencies {
groovy 'org.codehaus.groovy:groovy-all:1.5.6'
compile 'org.gradle:gradle-core:0.9-preview-1'
compile 'org.gradle:gradle-plugins:0.9-preview-1'
compile 'org.apache:ivy:2.1.0'
compile 'org.slf4j:slf4j-api:1.5.10'
plugin 'commons-httpclient:commons-httpclient:3.1'
}