Questions tagged [maven-wagon-plugin]

The Maven Wagon plugin is a plugin for Apache Maven 2 for deploying files, supporting SCP, FTP, file copy and a variety of other mechanisms. This is a tag for Maven related questions that are specific to using this plugin for deploying files.

The Maven Wagon plugin is a plugin for the Apache Maven 2 for deploying files via uploading and downloading. It supports SCP, FTP, file copy and a variety of other mechanisms. This is a tag for Maven related questions that are specific to using this plugin for deploying files.

58 questions
1
vote
0 answers

Using git wagon plugin to store jars at github/gitlab

I'm using git-wagon wagon-git plugin to store jars at github repository (this is just for test, my company have own gitlab repository). I've created project "wagon_test", and deployed it…
Bresiu
  • 2,123
  • 2
  • 19
  • 31
1
vote
1 answer

How can I use maven project hosted at Google code as dependency?

I want to create a maven project to depend on maven-structured Google Code project that has been frozen before they has been published to maven central repo. Since their code is available (…
Eljah
  • 4,188
  • 4
  • 41
  • 85
1
vote
1 answer

How to install files via maven-wagon-ssh/scp on an ec2 instance?

I am trying to copy some puppet files via scp on an ec2 ubuntu instance, using the maven-wagon-plugin. I've added the path of my private key file to my settings.xml and defined the usage of the plugin within my pom.xml (see below). I can connect to…
1
vote
1 answer

Generate javadoc in maven and then upload via scp?

I have Maven javadoc plugin working nicely right now, but I do not know how to add it to the remote directory via scp. How do I transfer the javadoc files via scp, but AFTER they have been generated? Can this automatically happen when I call…
Sam Levin
  • 3,326
  • 7
  • 30
  • 44
0
votes
1 answer

Maven-Wagon - How to rename resources with special characters?

I try to use the Mave-Wagon plugin to download a file via HTTP-GET: org.apache.maven.wagon wagon-http
Sebastian J.
  • 762
  • 9
  • 29
0
votes
1 answer

Maven error saying repository not specified -- wagon plugin

I am just trying to copy files from one location to another using scp [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy (default-deploy) on project iq-resources: Deployment failed: repository element was not…
Shamis Shukoor
  • 2,515
  • 5
  • 29
  • 33
0
votes
1 answer

How to solve algorithm negotiation fail when you can't change the sshd file?

com.jcraft.jsch.JSchException: Algorithm negotiation fail at com.jcraft.jsch.Session.receive_kexinit(Session.java:590) at com.jcraft.jsch.Session.connect(Session.java:320) at com.jcraft.jsch.Session.connect(Session.java:183) at…
ss13199
  • 1
  • 4
0
votes
1 answer

Maven Wagon plugin fails to upload over SCP despite return code 0

I'm maintaining a project using the Maven Wagon plugin to upload artifacts to a server where the organisation stores new releases of the application in question. That server has changed a while back and I'm having a hard time getting the artifacts…
toniedzwiedz
  • 17,895
  • 9
  • 86
  • 131
0
votes
1 answer

wagon-maven-plugin:1.0:download-single cannot download a resource

I want to use wagon-maven-plugin with download-single goal from a correct url but maven says: Error handling resource: Resource missing at http://myurl/from/file%3FWSDL 404 Not Found -> [Help 1] Here is the plugin definition: …
aydinugur
  • 1,208
  • 2
  • 14
  • 21
0
votes
1 answer

Bitbucket Pipeline: Host key mismatch (prefers ECDSA before RSA)

I have a Bitbucket deployment pipeline which uses the wagon-maven-plugin to copy a file on a server. This fails with Are you sure you want to continue connecting? (yes/no): The authenticity of host 'www.rpgframework.de' can't be established. RSA key…
taranion
  • 631
  • 1
  • 6
  • 17
0
votes
1 answer

Maven deployment keeps asking for username/password

For our maven project, each time that we call the deploy command: mvn deploy -Dmaven.test.skip=true it asks for a user-name password: Kerberos username [ccgadmin]: Kerberos password for ccgadmin: I am fine entering username/password, but the…
Daniel
  • 5,839
  • 9
  • 46
  • 85
0
votes
1 answer

Parent project hosted on Google Cloud Storage is not accessible

I have spring boot parent project hosted on Google Cloud Storage. I am using GoogleStorageWagon. I am able to deploy parent to GCS, But I am not able to download it. Child project pom.xml
0
votes
1 answer

Force Maven Wagon plugin to POST instead of PUT

We're trying to use the Nexus APT plugin, but sending artifacts to it requires them to be POSTed not PUTed. The default Wagon implementation wants to HTTP Put it seems, because we're getting a 405 error back. Is there a way to tell wagon to POST…
Jonathan S. Fisher
  • 8,189
  • 6
  • 46
  • 84
0
votes
1 answer

Can a maven wagon be a plugin simultaneously

Is it possible for a maven wagon jar to also be a plugin. To achieve this requires to set the packaging to maven-plugin. Is this going to cause any repercussions with regards to the wagon?
gkatzioura
  • 2,655
  • 2
  • 26
  • 39
0
votes
0 answers

How to configure maven wagon plugin to allow insecure ssl?

At our company we have artifactory running on an https server. I could access the artifacts by adding the cert of the server to the java keystore. But i would rather set the properties: maven.wagon.http.ssl.insecure = true …
Joha
  • 935
  • 12
  • 32