This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
136 lines (112 loc) · 3.93 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
group 'org.zanata'
version '1.1-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith('SNAPSHOT')
if (isReleaseVersion) {
ext.sonatypeRepo = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
} else {
ext.sonatypeRepo = "https://oss.sonatype.org/content/repositories/snapshots/"
}
ext.nexusUsername = project.hasProperty("nexusUsername") ? nexusUsername : ""
ext.nexusPassword = project.hasProperty("nexusPassword") ? nexusPassword : ""
buildscript {
repositories {
mavenCentral()
//Needed only for SNAPSHOT versions
//maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.9.0"
}
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'io.codearte.nexus-staging'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.8.0'
testCompile 'org.mockito:mockito-core:2.8.9'
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
// allow ./gradlew publishToMavenLocal to work (NB no metadata in pom)
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar {
classifier "sources"
}
}
}
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(
url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: nexusUsername, password: nexusPassword)
}
snapshotRepository(
url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: nexusUsername, password: nexusPassword)
}
// TODO this pom metadata doesn't apply to gradlew install or gradlew publishToMavenLocal
pom.project {
//noinspection GroovyAssignabilityCheck
name 'AnnotationClaim'
packaging 'jar'
// optionally artifactId can be defined here
description 'Claims annotations at build time to avoid the javac warning: No processor claimed any of these annotations.'
url 'https://github.com/zanata/annotationclaim'
inceptionYear '2017'
scm {
connection 'scm:git:git://github.com/zanata/annotationclaim.git'
developerConnection 'scm:git:[email protected]:zanata/annotationclaim.git'
url 'https://github.com/zanata/annotationclaim'
}
licenses {
license {
//noinspection GroovyAssignabilityCheck
name 'Apache License, Version 2.0'
url 'https://www.apache.org/licenses/LICENSE-2.0'
}
}
developers {
developer {
id 'sflaniga'
//noinspection GroovyAssignabilityCheck
name 'Sean Flanigan'
email '[email protected]'
}
}
}
}
}
}
nexusStaging {
packageGroup = "org.zanata"
//optional if packageGroup == project.getGroup()
//stagingProfileId = "yourStagingProfileId" //when not defined will be got from server using "packageGroup"
}