-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
263 lines (229 loc) · 7.54 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
import net.ltgt.gradle.errorprone.CheckSeverity
import org.ajoberstar.grgit.Grgit
import org.apache.commons.compress.archivers.tar.TarArchiveEntry
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream
import org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream
import org.apache.http.client.methods.HttpGet
import org.apache.http.impl.client.HttpClients
import java.nio.file.Files
import java.nio.file.Paths
import java.nio.file.StandardOpenOption
import java.time.ZoneOffset
import java.util.regex.Pattern
plugins {
id 'java-library'
id 'idea'
id 'signing'
id 'maven-publish'
id 'com.google.protobuf' version '0.9.4'
id 'net.ltgt.errorprone' version '3.1.0'
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
id 'com.diffplug.spotless' version '6.22.0'
}
group = 'io.qdrant'
version = packageVersion
description = 'Official Java client for Qdrant vector database'
repositories {
// google mirror for maven
maven {
url 'https://maven-central.storage-download.googleapis.com/maven2/'
}
mavenCentral()
mavenLocal()
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}
tasks.withType(JavaCompile).configureEach {
// exclude generated code from error prone checks
options.errorprone.excludedPaths.set(".*/build/generated/.*")
options.errorprone {
//noinspection GroovyAssignabilityCheck
check("NullAway", CheckSeverity.ERROR)
option("NullAway:AnnotatedPackages", "com.uber")
}
}
javadoc {
// exclude code generated from protos
exclude 'io/qdrant/client/grpc/**'
exclude 'grpc/**'
}
sourcesJar {
// exclude generated duplicate of com/qdrant/client/grpc/CollectionsGrpc.java
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
jar {
doFirst {
def git = Grgit.open(Map.of('currentDir', rootProject.rootDir))
// add qdrant version from which client is generated.
jar.manifest.attributes['X-Qdrant-Version'] = qdrantProtosVersion
// add git revision and commit time to jar manifest
jar.manifest.attributes['X-Git-Revision'] = git.head().id
jar.manifest.attributes['X-Git-Commit-Time'] = git.head().dateTime.withZoneSameLocal(ZoneOffset.UTC)
jar.manifest.attributes['Implementation-Version'] = packageVersion
git.close()
}
}
def grpcVersion = '1.65.1'
def protocVersion = '3.25.4'
def slf4jVersion = '2.0.14'
def testcontainersVersion = '1.20.1'
def jUnitVersion = '5.10.2'
dependencies {
errorprone "com.uber.nullaway:nullaway:0.10.18"
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
compileOnly "org.apache.tomcat:annotations-api:6.0.53"
errorprone "com.google.errorprone:error_prone_core:2.29.2"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
testImplementation "io.grpc:grpc-testing:${grpcVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${jUnitVersion}"
testImplementation "org.mockito:mockito-core:3.4.0"
testImplementation "org.slf4j:slf4j-nop:${slf4jVersion}"
testImplementation "org.testcontainers:qdrant:${testcontainersVersion}"
testImplementation "org.testcontainers:junit-jupiter:${testcontainersVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${jUnitVersion}"
}
tasks.register('downloadProtos') {
// gradle detects changes to this output dir since last run to determine whether to run this task
outputs.dir(new File(rootProject.rootDir, "protos/${qdrantProtosVersion}"))
doLast {
def outputDirectory = outputs.files.singleFile.toPath().toString()
def protoFileRegex = Pattern.compile(".*?lib/api/src/grpc/proto/.*?.proto")
try (def httpClient = HttpClients.createDefault()) {
def url = "https://api.github.com/repos/qdrant/qdrant/tarball/${qdrantProtosVersion}"
logger.debug("downloading protos from {}", url)
def response = httpClient.execute(new HttpGet(url))
try (InputStream tarballStream = response.getEntity().getContent()) {
try (TarArchiveInputStream tarInput = new TarArchiveInputStream(new GzipCompressorInputStream(tarballStream))) {
TarArchiveEntry entry
while ((entry = tarInput.getNextTarEntry()) != null) {
if (!entry.isDirectory() && protoFileRegex.matcher(entry.getName()).matches()) {
def lines = new ArrayList<String>()
def lineNum = -1
def seenJavaPackage = false
def br = new BufferedReader(new InputStreamReader(tarInput))
String line
while ((line = br.readLine()) != null) {
lines.add(line)
if (line == "package qdrant;") {
lineNum = lines.size()
} else if (line.startsWith("option java_package")) {
seenJavaPackage = true
}
}
// patch in java package to qdrant protos
if (!seenJavaPackage && lineNum != -1) {
lines.add(lineNum, "option java_package = \"io.qdrant.client.grpc\";")
}
def fileName = Paths.get(entry.getName()).getFileName().toString()
def dest = java.nio.file.Path.of(outputDirectory, fileName)
logger.debug("writing {} to {}", fileName, dest)
Files.write(dest, lines, StandardOpenOption.CREATE)
}
}
}
}
}
}
}
processResources {
dependsOn downloadProtos
}
extractIncludeProto {
dependsOn downloadProtos
}
protobuf {
protoc { artifact = "com.google.protobuf:protoc:${protocVersion}" }
plugins {
grpc { artifact = "io.grpc:protoc-gen-grpc-java:${grpcVersion}" }
}
generateProtoTasks {
all()*.plugins { grpc {} }
}
}
// Inform IDEs like IntelliJ IDEA, Eclipse or NetBeans about the generated code.
sourceSets {
main {
proto {
// include protos from outside the sourceSets
//noinspection GroovyAssignabilityCheck
srcDir "protos/${qdrantProtosVersion}"
}
java {
srcDirs 'build/generated/source/proto/main/grpc'
srcDirs 'build/generated/source/proto/main/java'
}
}
}
test {
useJUnitPlatform()
// Set system property to use as docker image version for integration tests
systemProperty 'qdrantVersion', qdrantVersion
}
def organization = 'qdrant'
def repository = 'java-client'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = "Qdrant Java Client"
description = "${project.description}"
url = "https://github.com/${organization}/${repository}"
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
developers {
developer {
id = 'qdrant'
name = 'Qdrant and Contributors'
email = '[email protected]'
}
}
scm {
connection = "scm:git:git://github.com/${organization}/${repository}.git"
developerConnection = "scm:git:ssh://github.com/${organization}/${repository}.git"
url = "https://github.com/${organization}/${repository}"
}
}
}
}
repositories {
mavenLocal()
}
}
nexusPublishing {
repositories {
sonatype {
nexusUrl = uri("https://s01.oss.sonatype.org/service/local/")
snapshotRepositoryUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
}
signing {
def signingKeyId = findProperty("signingKeyId")
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications.mavenJava
}
spotless {
java {
target 'src/*/java/**/*.java'
importOrder()
removeUnusedImports()
cleanthat()
googleJavaFormat()
formatAnnotations()
}
}
compileJava.dependsOn 'spotlessApply'