Tagged Questions
The maven-scm tag has no wiki summary.
7
votes
2answers
3k views
Externalising SCM credentials with Maven
Is there a method to externalize my SCM credentials so they are not stored in the project's POM? The problem being if they're contained in the project's POM, they will be visible to all when the ...
5
votes
2answers
2k views
Maven Buildnumber plugin - Git
The Maven Buildnumber plugin doesn't appear to work with GIT yet. Is there a workaround for the time being? I recently switched from SVN to GIT and have found it to be an easy transition, but this ...
4
votes
1answer
2k views
Unable to deploy using SVN as Maven repo
I'm trying to use Subversion as Maven repo utilizing Maven wagon. If I declare snapshot location using http as protocol I get 409 error back from server when trying to deploy (mvn clean deploy)
...
3
votes
2answers
69 views
How can I add a Maven dependency to a project that needs to be checked out via svn?
I want to distribute my project that has a dependency to another project hosted on Google code that is only available in source code (there is no compiled jar version available.)
I am aware of the ...
3
votes
2answers
359 views
maven build execute svn get
I have a project build that needs to include files from another svn location during the build. I want to execute an svn get and then copy these files to the appropriate folder for the build. ...
3
votes
2answers
1k views
Maven: How to deploy with deploy-file and custom wagon
I'm trying to use a custom maven wagon extension to deploy a jar to my own repository. Can I somehow configure in settings.xml that it recognizes the custom url scheme to be used with the specific ...
2
votes
1answer
193 views
maven scm url generate
Currently doing some refactoring. Consolidating modules and creating new ones. Is there a way for Maven to generate the scm urls for each maven module rather than me going thru each module manually?
2
votes
2answers
4k views
Disable Maven SCM
Could I disable SCM integration option in Maven? I want it to build a local checked-out project without SCM integration ?
is there some settings or some how??
thanx in advance
2
votes
3answers
600 views
Credentials ignored with maven scmchangelog-plugin
When I configure the scmchangelog-plugin, as written in the examples/tutorial, and run the site-generation, the username and password I have set are ignored.
The documentation says that username and ...
2
votes
7answers
6k views
Why does mvn release:prepare fail while tagging?
With my multiproject pom I get an error while running release:prepare. There is nothing fancy about the project setup and every release-step before runs fine.
The error I get is:
[INFO] ...
1
vote
0answers
33 views
Eclipse sync with svn repo is not available for Maven import project
I have checked in a maven multi module project.If I check in in normal way, as "import - svn Checkout projects from svn" , then the main project is checked in as one folder and it is possible to team ...
1
vote
1answer
52 views
Any pattern for using Maven to checkout/patch/build a non-maven based open source project?
I need to have a small patch applied to the sources of an open source project before we can use the library it generates. I'd like to automate this as much as possible, and am hoping to find some ...
1
vote
1answer
191 views
Maven dependency management vs subversion svn:external for enterprise application
I'm new to maven.
Given enterprise level Java application. Source code is managed by subversion.
As I understand once I friezed code, I should be able to compile it 5 years latter and receive the ...
1
vote
0answers
100 views
statscm alternative
Is there an alternative to the maven plugin statscm? http://stat-scm.sourceforge.net/
Looking for something that has active development. Also there are some lingering bugs which are only available in ...
1
vote
1answer
159 views
How do I get a Git change set ID from the Maven SCM abstraction
I have a Maven Mojo plugin that interrogates the SCM to produce a report. It collects the comment, author and date entries fine. I now need the actual commit ID. So, given the following log ...
1
vote
1answer
240 views
Maven mercurial extension constantly fails
After 2+ hours I was able to get the maven-scm-provider-hg extension (for pushing to mercurial repos from Maven) semi working, meaning that it was executing commands instead of just giving errors.
...
1
vote
1answer
142 views
maven 2 release plugin re-checking out all other SVN tags, not just current one being released
I have a Maven 2 project that I am releasing. I've released it several times before over the years, and nothing much has changed structurally nor configuration-wise on it since the last time I ...
1
vote
1answer
495 views
Exception:invalid scm URL, on runing mvn scm:checkout command
Contents of POM.xml are :
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
1
vote
1answer
2k views
What is the format of svn-settings.xml for use with Maven SCM plugin?
I'm trying to externalize my username and password but it seems the format of svn-settings.xml is incorrect. I can't find any resources on the web except this post here and following that gives an ...
1
vote
1answer
302 views
Maven - format code and check-in
I am using Hudson to build my projects periodically. I want Hudson to format my code (using Jalopy) and then check-in the changes to github.com.
I already have Jalopy configured the way I like, I ...
1
vote
1answer
272 views
Maven Mojo: Taking complete control over logging / Forbid other plugins to log
I don't know if this is actually possible, but can I take complete control over logging from inside a Maven Mojo? With complete control I mean that only messages from my Mojo are logged or that I can ...
1
vote
1answer
798 views
How to exclude a folder in svn checkout in maven?
Im using maven to checkout some projects. I don't want maven to checkout a folder. But it seems to ignore the excludes tag in configuration.
This is the svn structure:
trunk/
|-- ...
1
vote
3answers
788 views
maven build error
when building a maven project. i am getting the following error.
[ERROR]Runtime Exception thrown during execution
[ERROR]The scm url cannot be null.
Please hint me on how to resolve it.
Thanks
1
vote
2answers
1k views
How to configure Hudson/Maven2 to add SVN revision to name of EAR?
We use Hudson, Maven2 and maven-ear-plugin.
Is it possible to have the built EAR files to contain SVN revision in their filename (something like project-1234.ear)?
1
vote
3answers
1k views
How can I configure Maven to commit to a Mercurial repository when I install:install
Maven's SCM plug-in doesn't appear to provide a "commit" goal. scm:checkin performs a commit AND push. I need to avoid the push.
I'm simply interested in doing an hg commit during install:install. ...
1
vote
1answer
3k views
Maven: Commit single artifact to svn repository
How can I commit a single artifact like a file or a directory to an arbitrary location in a svn repository in the deploy lifecycle phase? With repository I mean a plain Subversion repository here, not ...
1
vote
2answers
2k views
How to setup Maven to connect with CVS using public key authentication?
I have a section in a POM that looks something like this:
<scm>
<connection>scm:cvs:ext:myhostname:/cvsroot/repo:module_name</connection>
</scm>
I typically use publickey ...
1
vote
1answer
1k views
using Maven SCM tag with Perforce
Does anyone have examples on how to configure the Maven SCM tag for perforce?
1
vote
1answer
1k views
How to use maven to export a project from subversion?
Maven has a plugin called maven-scm-plugin, which can interact with source control systems. According to the documentation, I should be able to export a project like this:
mvn scm:export ...
0
votes
0answers
6 views
maven plugin to checkout the code from the repository and display the files checking out on the console
I need to checkout the java code from the repository using maven and also when its checking out, i need to see the files getting checked out as when running svn co "repo url" command.
I am currently ...
0
votes
1answer
13 views
Maven: What is the <url> element in the <scm> config used for?
When configuring the <scm> element in a pom.xml, what is the <url> tag used for?
Example from http://maven.apache.org/scm/plugins/usage.html:
<scm>
...
0
votes
1answer
66 views
Maven release plugin and scm plugin configuration
If I want to use release plugin with CVS, do I also declare maven-scm-plugin and set it up for my CVS environment ? The release plugin is using maven-scm-providers internally and there is no way to ...
0
votes
2answers
67 views
maven scm plugin - what is the url config-value?
Question re. the Maven scm-plugin:
http://maven.apache.org/scm/plugins/usage.html
Example, in pom.xml:
<scm>
...
0
votes
1answer
187 views
maven scm:checkin error
My maven script generates a laconic "error 1", and I am a bit at a loss as to how to extract the root cause from the huge output.
Could you help me in isolating said root cause for this error?
Here ...
0
votes
1answer
117 views
Where placed the scm tag?
I have a little probleme with the scm tag in my pom.xml file.
My project architecture is like this:
Parent
Submodule1
Submodule2
reactor
Parent is the project which hold all maven plugins ...
0
votes
2answers
328 views
How can I do a git pull in Maven?
I'm new to both maven and git and wanted to get some help in setting a project.
Is there a way to define a goal in the pom to push/pull from git during linked to a maven phase? For example, can I ...
0
votes
1answer
183 views
How to skip unittests when using mvn scm:bootstrap
I'm trying to use the mvn scm plugin to check out the daily tag, and create an assembly from that version of the code. I configured the scm plugin and everythhing is working well, except that I can ...
0
votes
1answer
451 views
Maven-scm plugin: Why is the scmRevision not working as expected?
I'm using Maven 3.0.3, the Maven/SCM plugin (1.5) and Git 1.7.4.1. I want to run a maven command to check out a revision of git, but the plugin is treating my "scmVersion" parameter like a branch ...
0
votes
0answers
62 views
How to prevent changelog from running with Maven SCM:update-subprojects
Is there a way to prevent changelog from running with the scm:update-subprojects goal? the scm:update gives you the option and defaults to false if you don't specify it.
It seems to create a full ...
0
votes
1answer
534 views
How to force Maven SCM Perforce provider version?
I am trying to reproduce an existing maven environment on another computer and when I try to use the release plugin it gives me an "password is required for the perforce scm plugin"
The odd thing is ...
0
votes
1answer
463 views
Maven Mojo & SCM Plugin: Add file to ignore list / set SVN property
I'm using maven-scm-plugin from within an own Maven Mojo via an injected ScmManager object and am trying to figure out how to add a file to the SCM ignore list.
The methods that ScmManager provides ...
0
votes
2answers
61 views
Creating a scm browser for an RCP application
I have an RCP app that saves its project as an xml file and currently the user just selections a directory to save that file and then uses the open file dialog to open the project. We are thinking ...
0
votes
2answers
912 views
maven scm plugin deleting output folder in every execution
I need to download from 2 different svn locations to the same output directory. So i configured 2 different executions. But every time it executes a checkout deletes the output directory so it also ...
0
votes
1answer
290 views
SVN Authentication and authorization
I have created a multi module maven project. Now I have shared the project with a internal SVN repository.
Now I want to give authorization to user based on the module user is owner of. So if a user ...
0
votes
3answers
121 views
Jalopy to format return/throw statements
I would like Jalopy to format my return and throw statements such that they look like a method call since they are:
return(true);
throw(new IllegalArgumentException("You can't do that, what we you ...