Skip to content

Commit 59a70f8

Browse files
committedApr 26, 2021
Also deploy Quarkus based artifacts to repositories
Signed-off-by: Kai Hudalla <kai.hudalla@bosch.io>
1 parent 63f8f70 commit 59a70f8

2 files changed

+2
-2
lines changed
 

‎jenkins/Hono-Deploy-Eclipse-Pipeline-Declarative.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ spec:
126126
stage('Build and deploy to Eclipse Repo') {
127127
steps {
128128
container('maven') {
129-
sh "mvn --projects :hono-service-auth,:hono-service-device-registry-file,:hono-service-device-registry-jdbc,:hono-service-device-registry-mongodb,:hono-service-command-router,:hono-service-device-connection,:hono-adapter-http-vertx,:hono-adapter-mqtt-vertx,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-lora-vertx,:hono-adapter-sigfox-vertx,:hono-adapter-coap-vertx,:hono-example,:hono-cli -am deploy -DskipTests=true -DnoDocker -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true"
129+
sh "mvn --projects :hono-service-auth,:hono-service-auth-quarkus,:hono-service-device-registry-file,:hono-service-device-registry-jdbc,:hono-service-device-registry-mongodb,:hono-service-command-router,:hono-service-command-router-quarkus,:hono-service-device-connection,:hono-adapter-amqp-vertx,:hono-adapter-amqp-vertx-quarkus,:hono-adapter-coap-vertx,:hono-adapter-coap-vertx-quarkus,:hono-adapter-http-vertx,:hono-adapter-http-vertx-quarkus,:hono-adapter-kura,:hono-adapter-lora-vertx,:hono-adapter-lora-vertx-quarkus,:hono-adapter-mqtt-vertx,:hono-adapter-mqtt-vertx-quarkus,:hono-adapter-sigfox-vertx,:hono-example,:hono-cli -am deploy -DskipTests=true -DnoDocker -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true"
130130
}
131131
}
132132
}

‎jenkins/Hono-Deploy-Maven-Central-Pipeline-Declarative.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ spec:
127127
withCredentials([file(credentialsId: 'secret-subkeys.asc', variable: 'KEYRING')]) {
128128
sh 'gpg --batch --import-options restore --import "${KEYRING}"'
129129
}
130-
sh "mvn deploy -pl :hono-service-auth,:hono-service-device-registry-file,:hono-service-device-registry-jdbc,:hono-service-device-registry-mongodb,:hono-service-command-router,:hono-service-device-connection,:hono-adapter-http-vertx,:hono-adapter-mqtt-vertx,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-lora-vertx,:hono-adapter-sigfox-vertx,:hono-adapter-coap-vertx,:hono-example,:hono-cli -am -DskipTests=true -DnoDocker -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true"
130+
sh "mvn deploy -pl :hono-service-auth,:hono-service-auth-quarkus,:hono-service-device-registry-file,:hono-service-device-registry-jdbc,:hono-service-device-registry-mongodb,:hono-service-command-router,:hono-service-command-router-quarkus,:hono-service-device-connection,:hono-adapter-amqp-vertx,:hono-adapter-amqp-vertx-quarkus,:hono-adapter-coap-vertx,:hono-adapter-coap-vertx-quarkus,:hono-adapter-http-vertx,:hono-adapter-http-vertx-quarkus,:hono-adapter-kura,:hono-adapter-lora-vertx,:hono-adapter-lora-vertx-quarkus,:hono-adapter-mqtt-vertx,:hono-adapter-mqtt-vertx-quarkus,:hono-adapter-sigfox-vertx,:hono-example,:hono-cli -am -DskipTests=true -DnoDocker -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true"
131131
}
132132
}
133133
}

0 commit comments

Comments
 (0)
Please sign in to comment.