Skip to content

Commit 8f53cdc

Browse files
committed
maven central release with nexux plugin (#961)
1 parent b5574fa commit 8f53cdc

File tree

5 files changed

+95
-16
lines changed

5 files changed

+95
-16
lines changed

.ci/configure_signing.sh

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#!/usr/bin/env bash
2+
3+
#
4+
# Licensed to Elasticsearch B.V. under one or more contributor
5+
# license agreements. See the NOTICE file distributed with
6+
# this work for additional information regarding copyright
7+
# ownership. Elasticsearch B.V. licenses this file to you under
8+
# the Apache License, Version 2.0 (the "License"); you may
9+
# not use this file except in compliance with the License.
10+
# You may obtain a copy of the License at
11+
#
12+
# http://www.apache.org/licenses/LICENSE-2.0
13+
#
14+
# Unless required by applicable law or agreed to in writing,
15+
# software distributed under the License is distributed on an
16+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
# KIND, either express or implied. See the License for the
18+
# specific language governing permissions and limitations
19+
# under the License.
20+
#
21+
22+
#see https://central.sonatype.org/publish/publish-gradle/#distributing-your-public-key
23+
24+
set -euo pipefail
25+
26+
if grep -sq "signing.keyId" gradle.properties; then
27+
# Keys already present
28+
exit 0
29+
fi
30+
31+
mkdir -p /tmp/secured
32+
keyring_file="/tmp/secured/keyring.gpg"
33+
34+
vault_path="kv/ci-shared/release-eng/team-release-secrets/elasticsearch-java"
35+
36+
vault kv get --field="keyring" $vault_path/gpg | base64 -d > $keyring_file
37+
## NOTE: passphase is the name of the field.
38+
signing_password=$(vault kv get --field="passphase" $vault_path/gpg)
39+
signing_key=$(vault kv get --field="key_id" $vault_path/gpg)
40+
41+
maven_username=$(vault kv get --field="username" $vault_path/maven_central)
42+
maven_password=$(vault kv get --field="password" $vault_path/maven_central)
43+
44+
cat >> gradle.properties <<EOF
45+
signing.keyId=${signing_key: -8}
46+
signing.password=${signing_password}
47+
signing.secretKeyRingFile=${keyring_file}
48+
49+
sonatypeUsername=${maven_username}
50+
sonatypePassword=${maven_password}
51+
EOF

.ci/make.sh

+19
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,25 @@ if [[ "$CMD" == "assemble" ]]; then
176176
fi
177177
fi
178178

179+
if [[ "$CMD" == "release" ]]; then
180+
rm -rf .ci/output/repository
181+
build_image
182+
echo -e "\033[34;1mINFO:\033[0m Building version ${VERSION}\033[0m"
183+
184+
if [[ "$DRY_RUN" = "true" ]]; then
185+
echo "Dry run: building and publishing to the local repository"
186+
gradle_task="publishAllPublicationsToDryRunRepository"
187+
else
188+
echo "Releasing to Maven snapshot repo"
189+
gradle_task="publishToSonatype closeAndReleaseStagingRepositories"
190+
fi
191+
docker run --rm --env VERSION=$VERSION -u "$(id -u)" \
192+
$git_mount $src_mount $output_mount \
193+
-v /tmp/secured:/tmp/secured \
194+
$docker_image \
195+
$gradle_task
196+
fi
197+
179198
if [[ "$CMD" == "bump" ]]; then
180199
echo $VERSION > config/version.txt
181200
fi

build.gradle.kts

+21
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,27 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
plugins {
20+
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
21+
}
22+
23+
nexusPublishing {
24+
repositories {
25+
sonatype()
26+
}
27+
}
28+
29+
repositories {
30+
mavenCentral()
31+
}
32+
33+
group = "co.elastic.clients"
34+
description = "Maven central release of the official elasticsearch java client"
35+
36+
subprojects {
37+
group = rootProject.group
38+
version = rootProject.version
39+
}
1940

2041
allprojects {
2142
group = "co.elastic.clients"

java-client/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ import java.io.FileWriter
2525
plugins {
2626
java
2727
`java-library`
28-
checkstyle
2928
`maven-publish`
29+
publishing
30+
checkstyle
31+
signing
3032
id("com.github.jk1.dependency-license-report") version "2.2"
3133
id("de.thetaphi.forbiddenapis") version "3.4"
3234
}

settings.gradle.kts

+1-15
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,4 @@ import java.nio.file.Paths
2121

2222
rootProject.name = "elasticsearch-java"
2323

24-
// Include as subprojects all subdirectories that have a "build.gradle.kts" and no ".gradle-standalone"
25-
fun listFiles(dir: File){
26-
(dir.listFiles() ?: arrayOf<File>()).
27-
filter { File(it, "build.gradle.kts").exists() }.
28-
filter { !File(it, ".gradle-standalone").exists() }.
29-
filter { it.name != "buildSrc" }.
30-
toTypedArray().
31-
forEach { dir ->
32-
include(dir.name)
33-
project(":" + dir.name).projectDir = dir
34-
}
35-
}
36-
37-
listFiles(rootProject.projectDir)
38-
listFiles(Paths.get(rootProject.projectDir.path,"examples").toFile())
24+
include("java-client")

0 commit comments

Comments
 (0)