diff --git a/jenkins/Hono-Deploy-Eclipse-Pipeline.groovy b/jenkins/Hono-Deploy-Eclipse-Pipeline.groovy index 9f2767e2db1..ed4252f9df7 100644 --- a/jenkins/Hono-Deploy-Eclipse-Pipeline.groovy +++ b/jenkins/Hono-Deploy-Eclipse-Pipeline.groovy @@ -57,7 +57,7 @@ def buildAndDeploy(def utils) { jdk: utils.getJDKVersion(), mavenLocalRepo: '.repository', options: [jacocoPublisher(disabled: true), artifactsPublisher(disabled: true)]) { - sh "mvn --projects :hono-service-auth,:hono-service-device-registry,:hono-adapter-http-vertx,:hono-adapter-mqtt-vertx,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-lora-vertx,:hono-adapter-sigfox-vertx,:hono-example,:hono-cli -am deploy -DskipTests=true -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true" + sh "mvn --projects :hono-service-auth,:hono-service-device-registry,: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-example,:hono-cli -am deploy -DskipTests=true -DcreateJavadoc=true -DenableEclipseJarSigner=true -DskipStaging=true" } } } diff --git a/jenkins/Hono-Deploy-Maven-Central-Pipeline.groovy b/jenkins/Hono-Deploy-Maven-Central-Pipeline.groovy index 90c660be452..3357b382279 100644 --- a/jenkins/Hono-Deploy-Maven-Central-Pipeline.groovy +++ b/jenkins/Hono-Deploy-Maven-Central-Pipeline.groovy @@ -62,7 +62,7 @@ def buildAndDeploy(def utils) { mavenLocalRepo: '.repository', mavenSettingsFilePath: "${params.MAVEN_SETTINGS_FILE}", options: [jacocoPublisher(disabled: true), artifactsPublisher(disabled: true)]) { - sh "mvn deploy -X -pl :hono-service-auth,:hono-service-device-registry,:hono-adapter-http-vertx,:hono-adapter-mqtt-vertx,:hono-adapter-kura,:hono-adapter-amqp-vertx,:hono-adapter-lora-vertx,:hono-adapter-sigfox-vertx,:hono-example,:hono-cli -am -DskipTests=true -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true" + sh "mvn deploy -X -pl :hono-service-auth,:hono-service-device-registry,: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-example,:hono-cli -am -DskipTests=true -DcreateGPGSignature=true -DcreateJavadoc=true -DenableEclipseJarSigner=true" } } }