-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
97 lines (79 loc) · 2.51 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
archivesBaseName = project.name
group = "com.natpryce"
version = hasProperty("-version") ? property("-version") : "SNAPSHOT"
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
repositories {
mavenCentral()
}
dependencies {
testCompile ("junit:junit:4.12") {
exclude group: "org.hamcrest"
}
testCompile "org.hamcrest:java-hamcrest:2.0.0.0"
testCompile ("org.hamcrest:hamcrest-junit:2.0.0.0") {
exclude group: "junit"
}
compile "org.pcollections:pcollections:2.1.2"
}
jar {
manifest {
attributes 'Implementation-Title': 'Make it Easy',
'Implementation-Vendor': 'com.natpryce',
'Implementation-Version': version
}
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc
}
artifacts {
archives jar, sourcesJar, javadocJar
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
repositories.mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: project.properties["ossrh.username"],
password: project.properties["ossrh.password"])
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: project.properties["ossrh.username"],
password: project.properties["ossrh.password"])
}
pom.project {
name archivesBaseName
packaging 'jar'
description 'A tiny framework that makes it easy to write Test Data Builders in Java'
url '/~https://github.com/npryce/make-it-easy'
scm {
connection '/~https://github.com/npryce/make-it-easy.git'
url '/~https://github.com/npryce/make-it-easy'
}
licenses {
license {
name 'Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0'
}
}
developers {
developer {
id 'nat.pryce'
name 'Nat Pryce'
}
}
}
}
}