Skip to content

Commit

Permalink
Explicitly list projects to deploy
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Hudalla <kai.hudalla@bosch.io>
  • Loading branch information
sophokles73 committed May 20, 2021
1 parent 7e4c516 commit d60fefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jenkins/Hono-Deploy-Eclipse-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ spec:
stage('Build and deploy to Eclipse Repo') {
steps {
container('maven') {
sh "mvn deploy -DskipTests=true -DnoDocker -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true"
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-http-vertx,:hono-adapter-http-vertx-quarkus,:hono-adapter-mqtt-vertx,:hono-adapter-mqtt-vertx-quarkus,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-amqp-vertx-quarkus,:hono-adapter-lora-vertx,:hono-adapter-lora-vertx-quarkus,:hono-adapter-sigfox-vertx,:hono-adapter-coap-vertx,:hono-adapter-coap-vertx-quarkus,:hono-example,:hono-cli -am -DskipTests=true -DnoDocker -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ spec:
withCredentials([file(credentialsId: 'secret-subkeys.asc', variable: 'KEYRING')]) {
sh 'gpg --batch --import-options restore --import "${KEYRING}"'
}
sh "mvn deploy -DskipTests=true -DnoDocker -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true"
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-http-vertx,:hono-adapter-http-vertx-quarkus,:hono-adapter-mqtt-vertx,:hono-adapter-mqtt-vertx-quarkus,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-amqp-vertx-quarkus,:hono-adapter-lora-vertx,:hono-adapter-lora-vertx-quarkus,:hono-adapter-sigfox-vertx,:hono-adapter-coap-vertx,:hono-adapter-coap-vertx-quarkus,:hono-example,:hono-cli -am -DskipTests=true -DnoDocker -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true"
}
}
}
Expand Down

0 comments on commit d60fefe

Please sign in to comment.