-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
138 lines (119 loc) · 3.74 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '1.2.3'
id 'maven'
id 'signing'
}
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
group = "co.paralleluniverse"
version = "0.2.0"
status = "integration"
description = "Daemon/Service Caplet based on jsvc and procrun"
ext.url = "https://github.com/puniverse/${project.name}"
ext.vendor = "Parallel Universe Software Co."
ext.licenseName = "Eclipse Public License - v 1.0"
ext.licenseUrl = "http://www.eclipse.org/legal/epl-v10.html"
ext.scmUrl = "https://github.com/puniverse/${project.name}"
ext.scmConnection = "https://github.com/puniverse/${project.name}.git"
ext.distDir = "$buildDir/dist"
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
if (!project.hasProperty("sonatypeUsername") || !project.hasProperty("sonatypePassword")) {
ext.sonatypeUsername = ""
ext.sonatypePassword = ""
}
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
compile 'co.paralleluniverse:capsule:1.0.2'
runtime 'commons-daemon:commons-daemon:1.0.15'
testCompile group: 'junit', name: 'junit', version: '4.10'
}
jar {
manifest {
attributes (
'Premain-Class' : 'Capsule',
'Main-Class' : 'Capsule',
'Caplets' : 'DaemonCapsule'
)
}
}
shadowJar {
outputs.upToDateWhen { false }
classifier = '' // overwrite existing jar
destinationDir = file("$buildDir/libs")
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
///////// Publish Artifacts
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
repository(
url: (isReleaseVersion ?
"https://oss.sonatype.org/service/local/staging/deploy/maven2" :
"https://oss.sonatype.org/content/repositories/snapshots")) {
// User and Password are taken from ~/.gradle/gradle.properties
authentication(userName: project.sonatypeUsername, password: project.sonatypePassword)
}
pom.project {
name project.name
packaging 'jar'
description project.description
url project.url
scm {
url project.scmUrl
connection project.scmConnection
developerConnection project.scmConnection
}
licenses {
license {
name project.licenseName
url project.licenseUrl
distribution 'repo'
}
}
developers {
developer {
id 'pron'
name 'Ron Pressler'
}
}
}
}
}
}
[build, install, signArchives, uploadArchives]*.dependsOn shadowJar
install.repositories.mavenInstaller {
pom.whenConfigured {
it.dependencies.clear()
}
}
uploadArchives.repositories.mavenDeployer {
pom.whenConfigured {
it.dependencies.clear()
}
}
defaultTasks 'build'