-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
156 lines (140 loc) · 3.52 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
plugins {
id 'java'
id 'maven-publish'
id 'idea'
id 'signing'
id 'checkstyle'
id 'jacoco'
id 'java-library'
id "com.diffplug.spotless" version "6.1.0"
id 'org.sonarqube' version '3.3'
}
apply from: 'dependencies.gradle'
apply from: 'gradle/quality.gradle'
apply from: 'gradle/deployment.gradle'
apply from: 'gradle/execution.gradle'
description = "Atlas Generator Library"
sourceCompatibility=11
targetCompatibility=11
repositories
{
// For geotools
maven {
url "https://repo.osgeo.org/repository/release/"
content {
// osgeo removed the jar and added a -norce version
excludeVersion("log4j", "log4j", "1.2.17")
}
}
mavenCentral()
}
configurations
{
compile
{
resolutionStrategy
{
force packages.atlas
force packages.spark.core
force packages.spark.sql
// Snappy 1.1.1.6 is the one that has the proper .so libs.
// https://github.com/xerial/snappy-java/issues/6
force packages.snappy
}
}
shaded {
extendsFrom(implementation)
resolutionStrategy
{
force packages.atlas
force packages.spark.core
force packages.spark.sql
// Snappy 1.1.1.6 is the one that has the proper .so libs.
// https://github.com/xerial/snappy-java/issues/6
force packages.snappy
}
// Hadoop and Spark are way too fat.
exclude group: 'org.apache.hadoop'
exclude group: 'org.apache.spark'
exclude group: 'org.slf4j', module: 'slf4j-api'
}
}
dependencies
{
api packages.atlas
api packages.spark.core
api packages.spark.sql
api packages.jline
checkstyle packages.checkstyle
checkstyle packages.atlas_checkstyle
shaded project.configurations.getByName('compile')
}
task shaded(type: Jar){
archiveBaseName = project.name
classifier = 'shaded'
from
{
configurations.shaded.collect
{
it.isDirectory() ? it : zipTree(it).matching{
exclude
{
it.path.contains('META-INF') && (it.path.endsWith('.SF') || it.path.endsWith('.DSA') || it.path.endsWith('.RSA'))
}
}
}
}
with jar
zip64 = true
}
task fat(type: Jar){
archiveBaseName = project.name
classifier = 'fat'
from
{
configurations.compile.collect
{
it.isDirectory() ? it : zipTree(it).matching{
exclude
{
it.path.contains('META-INF') && (it.path.endsWith('.SF') || it.path.endsWith('.DSA') || it.path.endsWith('.RSA'))
}
}
}
}
with jar
zip64 = true
}
/**
* Artifact related items
*/
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts
{
archives javadocJar, sourcesJar, shaded, fat
}
/*
* This is to skip the tasks for which there is a skip<TaskName>=true
* environment variable
*/
def skippedTaskNames = System.getenv().findAll { key, value ->
key.startsWith("skip") && value.equalsIgnoreCase("true")
}.keySet().collect { it.substring(4) }
gradle.startParameter.excludedTaskNames += skippedTaskNames
idea {
project {
languageLevel = '11'
}
}
tasks.each {
task -> if (task.hasProperty("duplicatesStrategy")) {
task.setProperty("duplicatesStrategy", "EXCLUDE")
}
}