-
Notifications
You must be signed in to change notification settings - Fork 563
/
Copy pathbuild.gradle
executable file
·109 lines (93 loc) · 2.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
apply plugin: 'wrapper'
// Needed for shadow.
buildscript {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://repo.grails.org/grails/core/" }
}
dependencies {
classpath group: 'com.github.jengelman.gradle.plugins',
name: 'shadow',
version: '1.2.3'
classpath group: 'com.jfrog.bintray.gradle',
name: 'gradle-bintray-plugin',
version: '1.7.3'
classpath group: 'gradle.plugin.com.palantir.gradle.gitversion',
name: 'gradle-git-version',
version: '0.7.3'
}
}
allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'com.palantir.git-version'
repositories {
jcenter()
maven { url "http://repo.typesafe.com/typesafe/releases/" }
maven { url 'http://projectlombok.org/mavenrepo' }
}
configurations {
provided
}
group = 'com.airbnb.aerosolve'
version gitVersion()
ext.publish = true
ext.dryRun = false
sourceSets {
main {
compileClasspath += configurations.provided
}
test {
compileClasspath += configurations.provided
runtimeClasspath += configurations.provided
}
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
options.setDeprecation true
options.encoding = 'UTF-8'
}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
// disable the crazy super-strict doclint tool in Java 8
//noinspection SpellCheckingInspection
options.addStringOption('Xdoclint:none', '-quiet')
}
}
// Configure Idea plugin
idea {
module {
scopes.PROVIDED.plus += [configurations.provided]
downloadJavadoc = true
}
}
}
subprojects {
apply plugin: 'maven'
if (project.plugins.hasPlugin('java')) {
// manifest.mainAttributes(provider: 'gradle')
configurations {
published
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
// Add the sourceJars to non-extractor modules
artifacts {
published sourceJar
published javadocJar
}
}
}