-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
132 lines (114 loc) · 3.87 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
defaultTasks 'clean', 'build'
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.2'
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.9.0'
classpath 'pl.allegro.tech.build:axion-release-plugin:1.7.1'
}
}
apply plugin: 'pl.allegro.tech.build.axion-release'
apply plugin: 'io.codearte.nexus-staging'
allprojects {
group 'com.github.lizardev'
project.version = scmVersion.version
repositories {
mavenCentral()
}
}
configure(subprojects.findAll {it.name != 'gradle-integration-test'}) {
apply plugin: 'java'
apply plugin: 'signing'
apply plugin: 'maven'
apply plugin: 'nebula.provided-base'
archivesBaseName = "$rootProject.name-$name"
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
ext {
saxonVersion = '9.6.0-7'
guavaVersion = '18.0'
commonsLangVersion = '3.4'
}
test {
testLogging {
events 'passed', 'skipped', 'failed'
exceptionFormat 'full'
showCauses true
afterSuite { desc, result ->
if (!desc.parent) {
println "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)"
}
}
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all'
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') {
authentication(userName: project.properties['nexusUsername'], password: project.properties['nexusPassword'])
}
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/') {
authentication(userName: project.properties['nexusUsername'], password: project.properties['nexusPassword'])
}
}
}
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
def installer = install.repositories.mavenInstaller
def deployer = uploadArchives.repositories.mavenDeployer
[installer, deployer]*.pom*.whenConfigured { pom ->
pom.dependencies.removeAll { d ->
d.scope == "test"
}
pom.dependencies = pom.dependencies.sort { d ->
"$d.scope:$d.groupId:$d.artifactId"
}
pom.project {
name = project.description
description = project.description
url = 'https://github.com/lizardev/xquery-saxon'
licenses {
license {
name = 'Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
developers {
developer {
name = 'Adam Laczynski'
organizationUrl = 'https://github.com/lizardev'
}
developer {
name = 'Michal Jedynak'
}
}
scm {
url = 'https://github.com/lizardev/xquery-saxon'
}
}
}
}