Questions tagged [xl-deploy]

The XebiaLabs tool Deploy

The XebiaLabs tool XL-Deploy.

47 questions
2
votes
1 answer

XLDeploy dar file creation using windows command prompt

Please refer the link: https://docs.xebialabs.com/xl-deploy/how-to/create-a-deployment-package-using-the-command-line.html Collect the EAR file and the configuration directory and store them in the directory: cp /some/path/petclinic-1.0.ear…
knowdotnet
  • 557
  • 4
  • 21
2
votes
1 answer

XL Deploy nesting dictionaries

I am preparing a an application for deployment using XebiaLabs XL Deploy tool. It is a .Net Windows Service, with environmental specific configuration (multiple instances across several qa/uat/prod servers) in the app.config. These config values…
Sean C
  • 59
  • 10
1
vote
2 answers

Is there a way to declare two nexus url in maven for searching single artifact

I'm trying to fetch an artifact from the nexus URL and I want maven to search for it in first Nexus URL and if it fails to find, it should look for it in the second URL. To be precise I want to add multiple repositories for XL Deploy. Here's the…
Yadav
  • 43
  • 6
1
vote
1 answer

How to use environment variable inside Jenkinsfile

I am having similar issue as mentioned here: Jenkinsfile Declarative Pipeline defining dynamic env vars I am trying to deploy an application via jenkinsfile. For which I have to run this command on the deploy stage in Jenkins (if I hardcode the…
gamechanger17
  • 2,167
  • 3
  • 10
  • 21
1
vote
0 answers

Deployit integration with Gitlab

I was using deployit (XLdeploy) with Jenkins and SVN as repo, but now I am planning to move to Gitlab. Is there any good documentation on how to integrate Gitlab with deployIT? I have searched but didn't get any reference documents. Where should I…
gamechanger17
  • 2,167
  • 3
  • 10
  • 21
1
vote
2 answers

Create Xl deploy package with multiple Jenkins artifacts

Is there a way to create an xl deploy package using Jenkins and then add multiple artifacts to the package? It seems that when using the xl deploy plugin, once you create a package it is not possible to add other artifacts to the package using…
mikestram
  • 183
  • 2
  • 9
1
vote
1 answer

jenkins declarative pipeline not working for xl-deploy using maven command

i wanna create jenkins declarative pipeline for deploying on xl-deploy using maven command. i am not using xl-deploy plugin i am just using maven command for this. pipeline { agent { label 'java8' } tools { maven…
1
vote
1 answer

Skip multiple steps, in multiple blocks from execution plan

In How to skip specific Execution Plan Steps? an answer is provided to skip steps from a single path block. The example provided in xml worked out to skip a single step or multiple steps for one single block. However, I want to skip multiple steps,…
Arjen
  • 11
  • 1
1
vote
1 answer

XL-Deploy Error: Error: this script should be run with the -expose-proxies flag. Exception in thread "main" javax.script.ScriptException:

[root@piyushjoshi bin]# sh cli.sh Username: admin Password: Welcome to the XL Deploy Jython CLI! Type 'help' to learn about the objects you can use to interact with XL Deploy. XL Deploy Objects available on the CLI: deployit: The main gateway to…
0
votes
0 answers

Jenkins job created with Jenkinsfile(pipeline) is getting error (java.lang.NoSuchMethodError: No such DSL method 'xldCreatePackage' found..)

I have an existing Jenkins job which is manuaaly configured with UI for build and deployment on XL Deploy manually. I am now creating a Jenkinsfile with pipeline which will replace existing job of manually building the code when I commit something…
Surjit Joshi
  • 2,719
  • 2
  • 16
  • 20
0
votes
0 answers

Jenkins - XebiaLabs XL Deploy Plugin with verbose mode

My pipline is this but I want display all actions from plugin (create folder, ...) stage('deploy') { steps { script { xldCreatePackage artifactsPath: '.' , manifestPath: 'deployit-manifest.xml', darPath:…
Stéphane GRILLON
  • 8,567
  • 5
  • 60
  • 106
0
votes
0 answers

Migration XLDeploy Jenkins plugins to Jenkins Pipeline (Jenkinsfile)

I use syntaxe of documentation but My tree folders is different. Jenkinsfile : stage('deploy') { steps { script { xldCreatePackage artifactsPath: '.' , manifestPath: 'deployit-manifest.xml', darPath:…
Stéphane GRILLON
  • 8,567
  • 5
  • 60
  • 106
0
votes
1 answer

using maven deployit plugin which relies on jaxb with java 11

We just migrated our project to java 11. We configured new dependencies in the pom for the jaxb &co packages that were present in jdk-8 but were removed in jdk-11. What we did not expect was for the deployit plugin to fail doing its job with an ugly…
Aldian
  • 2,481
  • 2
  • 24
  • 38
0
votes
1 answer

How can I copy an existing overthere.SshHost file in XL Deploy UI using Puppet?

The Infra team in my company has provided us with sample overthere.SshHost under 'Infrastructure' in XL-Deploy UI that has a predefined private key file and passphrase which is not shared with us. We are asked to duplicate this file manually in the…
Praveen
  • 1,218
  • 1
  • 14
  • 25
0
votes
0 answers

How to create object with class that has only constant

I am very new to development. I am using jython API of particular application. I am trying to use this method. This method has 2nd Args which accepts object PhaseVersion Type Method1- startTask( Task task, PhaseVersion phaseVersion) Looking at API…
aa4931
  • 1
  • 3
1
2 3 4