-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.27 KB
/
Copy pathbuild.gradle
File metadata and controls
47 lines (40 loc) · 1.27 KB
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.ajoberstar:gradle-git:1.7.1"
}
}
apply plugin: 'groovy'
apply plugin: 'org.ajoberstar.release-opinion'
//apply from: "$rootDir/gradle/test-setup.gradle"
//apply from: "$rootDir/gradle/integration-test.gradle"
//apply from: "$rootDir/gradle/functional-test.gradle"
apply from: "$rootDir/gradle/additional-artifacts.gradle"
apply from: "$rootDir/gradle/release.gradle"
apply from: "$rootDir/gradle/publishing.gradle"
apply from: "$rootDir/gradle/documentation.gradle"
repositories {
jcenter()
//mavenCentral()
}
group = 'com.xanophis'
dependencies {
compile localGroovy()
compile gradleApi()
compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.2'
}
ext.compatibilityVersion = '1.6'
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion
jar {
manifest {
attributes 'Implementation-Title': 'Gradle Multidocker plugin',
'Implementation-Version': version,
'Built-By': System.getProperty('user.name'),
'Built-Date': new Date(),
'Built-JDK': System.getProperty('java.version'),
'Built-Gradle': gradle.gradleVersion
}
}