This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
136 lines (113 loc) · 3.64 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
}
ext {
common_lang3_version = '3.4'
protobuf_version = '3.9.0'
junit_version = '5.5.2'
lombok_version = '1.18.4'
}
}
plugins {
id 'java'
id 'java-library'
id 'idea'
id 'com.google.protobuf' version '0.8.10'
id 'maven'
id 'signing'
}
group = 'com.keithtmiller'
archivesBaseName = 'proto-converter'
version = '1.0.1'
sourceCompatibility = 11.0
targetCompatibility = 11.0
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
// annotations needed for protobuf generated code
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: "${common_lang3_version}"
// protobuf dependencies
api group: 'com.google.protobuf', name: 'protobuf-java', version: "${protobuf_version}"
// test dependencies
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: "${junit_version}"
testCompile group: 'org.projectlombok', name: 'lombok', version: "${lombok_version}"
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: "${lombok_version}"
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:${protobuf_version}"
}
}
sourceSets {
main {
java {
srcDirs "${projectDir}/build/generated/source/proto/main/java"
srcDirs "${projectDir}/build/generated/source/proto/main/grpc"
srcDirs "${projectDir}/src/main/java"
}
}
}
test {
useJUnitPlatform()
exclude 'com/keithtmiller/prototest/**'
exclude 'com/keithtmiller/protoconverter/example/**'
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
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: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'Proto-Converter'
packaging 'jar'
description 'An Annotation based Java library for converting classes (like DTOs) to Protobuf classes'
url 'https://github.com/keith-miller/proto-converter'
scm {
connection 'https://github.com/keith-miller/proto-converter.git'
developerConnection 'https://github.com/keith-miller/proto-converter.git'
url 'https://github.com/keith-miller/proto-converter.git'
}
licenses {
license {
name 'MIT License'
url 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id 'keith-miller'
name 'Keith Miller'
email '[email protected]'
}
}
}
}
}
}