-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle
141 lines (127 loc) · 4.48 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
/*
* Forklift - An enterprise service bus that supports building and deploying
* microservice consumer and producers quickly and easily by annotating code.
*
* Composed of several sub-projects:
* - core: the core forklift code
* - connectors: ActiveMQ and Kafka connectors for producing and consuming on the different brokers
* - plugins: Different handlers that can be used to extend the forklift core
* - server: A java executable runnable container similar to Tomcat that can run consumers
* - consumers: Examples written to show how you to build your own forklift ESB
*/
allprojects {
repositories {
mavenCentral()
maven {
url 'https://packages.confluent.io/maven'
}
maven {
url "https://jitpack.io"
}
}
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'distribution'
group = 'com.github.dcshock'
version = '3.9-SNAPSHOT'
java {
withSourcesJar()
withJavadocJar()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
}
test {
useJUnitPlatform()
reports.html.enabled = false
// ignoreFailures true
testLogging {
events "passed", "skipped", "failed"
}
}
jar {
manifest {
attributes("Implementation-Title": "forklift",
"Implementation-Version": version)
}
}
publishing {
repositories {
maven {
URI releaseUrl = new URI("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
URI snapshotUrl = new URI("https://oss.sonatype.org/content/repositories/snapshots/")
afterEvaluate {
url version.endsWith("SNAPSHOT") ? snapshotUrl : releaseUrl
}
credentials {
username = System.getenv("SONATYPE_USER")
password = System.getenv("SONATYPE_PASS")
}
}
}
publications {
mavenJava(MavenPublication) {
version = project.hasProperty("artfactVersion") ? artifactVersion : version
from components.java
pom {
url = 'https://github.com/dcshock/forklift'
name = project.name
description = project.name
licenses {
license {
name = 'BSD-style'
url = 'http://www.opensource.org/licenses/bsd-license.php'
}
}
scm {
url = '[email protected]:dcshock/forklift.git'
connection = 'scm:git:[email protected]:dcshock/forklift.git'
}
developers {
developer {
id = 'dcshock'
name = 'Matt Conroy'
url = 'http://www.mattconroy.com'
}
developer {
id = 'afrieze'
name = 'Andrew Frieze'
}
developer {
id = 'kuroshii'
name = 'Bridger Howell'
}
developer {
id = 'applitect'
name = 'David Thompson'
}
}
}
}
}
}
signing {
def gpgPassword = System.getenv("GPG_PASS")
def gpgFile = System.getProperty("user.dir") + "/project/.gnupg/secring.gpg"
project.ext.set("signing.keyId", "F1ED27F3")
project.ext.set("signing.password", gpgPassword)
project.ext.set("signing.secretKeyRingFile", gpgFile)
required { gpgPassword != null }
sign publishing.publications.mavenJava
}
}
// Setup the test report to put together into one report for all subprojects.
task testReport(type: TestReport) {
destinationDir = file("$buildDir/reports/allTests")
// Include the results from the `test` task in all subprojects
reportOn getTasksByName("test", true)
}
rootProject.getTasksByName('test', true).each {
it.finalizedBy(testReport)
}
task cleanTestDir (type: Delete) {
file("$buildDir").deleteDir()
}