Re: No class files!!

2013-07-21 Thread Ed Hillmann
>From the look of the original output, it did look like it was generating classes. The first thing I would try is to skip the custom configuration of the JAR plugin to see if that's doing anything. If you run the command with "-X", you might get some more information about what the plugins are do

Re: Merging between branches but keep versions intact?

2013-02-20 Thread Ed Hillmann
I know my experience when merging between branches (using subversion instead of git) is that the version can get merged across if it's part of the change. From the way I understand it, the version control system doesn't know a POM file is a project file. It's a text file, like any other text file

Re: Best Practices for Managing Maven with Branches

2013-01-14 Thread Ed Hillmann
I've had very good experience with the goals on the release plugin. It pretty much does what is required for my branching needs. Thanks, Ed On Tue, Jan 15, 2013 at 3:38 AM, Nick Stolwijk wrote: > Or take a look at the Maven Release Plugin - branch goal [1] and it's > documentation page [2]. >

Re: mvn release:prepare

2012-11-06 Thread Ed Hillmann
I came across this a couple of years ago http://maven.40175.n5.nabble.com/mvn-release-prepare-cannot-tag-correctly-from-a-branch-td396112.html http://jira.codehaus.org/browse/MRELEASE-576 If memory serves, it was all around how the parent/child poms were defined, and the URL used in the connectio

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-07-30 Thread Ed Hillmann
Use the native plugin? http://mojo.codehaus.org/maven-native/native-maven-plugin/ I've never used this, so I'm not much more help than supplying the URL On Mon, Jul 30, 2012 at 10:49 PM, huseyn wrote: > Hi, > > I have eigtht libraries. There are very dependieces. I use c/c++ and > makefile. Ho

Re: How to do a release build in Maven?

2012-05-23 Thread Ed Hillmann
I think the first thing you should do is compare what you define as "release" and compare it with what the Release plugin does. "Release" is a loaded term for everyone making software. A Release in Maven means it's a fixed point in the lifecycle of the artifact. In a strictly maven-versioning te

Re: How to do a release build in Maven?

2012-05-23 Thread Ed Hillmann
Perhaps this is what you're after? http://maven.apache.org/guides/mini/guide-releasing.html >From Maven's documentation page: http://maven.apache.org/guides/index.html Doing a release in Maven is a way of generating "official" (non-snapshot) releases of the artifacts. Which supports things like

Re: Sub modules and goals

2012-04-04 Thread Ed Hillmann
On Thu, Apr 5, 2012 at 1:11 PM, Rajwinder Makkar wrote: > Here is a scenario : > > I have one maven project which has sub modules defined in the root pom. So > maven starts with root pom and then it hits tag and start > compiling the sub modules. goals i use are > > clean install deploy. > > What

Re: InstallAnywhere plugin -- or just use their Ant task?

2012-03-07 Thread Ed Hillmann
On Thu, Mar 8, 2012 at 3:24 AM, Wayne Fay wrote: > A friend is using Ant + InstallAnywhere and I told him that I would > look into options for integrating it with his Maven builds. I am > familiar with izPack and other options but his company has an > investment in IA and going to another tool is

Fwd: Is checkModificationExcludes working for anyone?

2012-02-16 Thread Ed Hillmann
Also, I've tried this with checkModificationExcludeList as well, with no difference. Thanks, Ed -- Forwarded message -- From: Ed Hillmann Date: Fri, Feb 17, 2012 at 8:08 AM Subject: Is checkModificationExcludes working for anyone? To: Maven Users List Hi all. I'm

Is checkModificationExcludes working for anyone?

2012-02-16 Thread Ed Hillmann
Hi all. I'm trying to use the checkModificationExcludes attribute of the release:prepare goal, but it seems to be ignoring it. I'm using version 2.2.2 of the plugin. My pom file looks like this: org.apache.maven.plugins maven-release-plugin

Re: Surefire not behaving the way I expect....

2011-11-20 Thread Ed Hillmann
011/01/maven-how-to-merging-plugin-configuration-in-complex-projects/> >>> >>> /Anders >>> >>> On Thu, Nov 17, 2011 at 05:52, Ed Hillmann >>> wrote: >>> >>>> Hi. I have a test which takes a long time to run. What I'

Re: Surefire not behaving the way I expect....

2011-11-17 Thread Ed Hillmann
1/maven-how-to-merging-plugin-configuration-in-complex-projects/ > > /Anders > > On Thu, Nov 17, 2011 at 05:52, Ed Hillmann wrote: > > Hi. I have a test which takes a long time to run. What I'd like to do > is > > exclude this test (written in JUnit) from the normal t

Surefire not behaving the way I expect....

2011-11-16 Thread Ed Hillmann
Hi. I have a test which takes a long time to run. What I'd like to do is exclude this test (written in JUnit) from the normal test phase, and only run it when a specific profile is defined. So, in my pom, I configure the surefire plugin with an excludes element, which contains the exclude child

Re: reordering the lifecycle

2011-05-02 Thread Ed Hillmann
On Fri, Apr 29, 2011 at 5:05 PM, Ron Wheeler wrote: > On 28/04/2011 5:35 PM, Justin Lee wrote: > >> I have a huge tree of ant based projects i'm trying to convert to maven. >> I >> have the mechanics worked about except for a minor hitch: I need the test >> phase to be the last one executed. S

Re: reordering the lifecycle

2011-04-28 Thread Ed Hillmann
Wouldn't it be easier to use the integration-test phase instead of the test phase? The integration-test phase runs after the package phase, and can be used to run tests later in the lifecycle. Just a thought, Ed On Fri, Apr 29, 2011 at 7:35 AM, Justin Lee wrote: > I have a huge tree of ant bas

Re: maven with ICEFACES

2011-03-21 Thread Ed Hillmann
You probably don't need to include JSF as part of your WAR file? It looks like there's a conflict between versions of JSF (the version provided by the container, and the version provided by your WAR file?). If this is the case, change the scope in Maven for the JSF dependencies to "provided". If

Re: mvn release:prepare cannot tag correctly from a branch

2010-06-14 Thread Ed Hillmann
OK, I've been able to recreate this using a dummy application. I do think it's a bug, so I've raised an issue on it http://jira.codehaus.org/browse/MRELEASE-576 It does actually end up building the release and deploying the correct one. However, in the process, it's checking out the entire cont

Re: mvn release:prepare cannot tag correctly from a branch

2010-06-14 Thread Ed Hillmann
More info... I am trying to reorganize my maven projects. Currently, there is a single pom that declares modules and acts as a parent project to those sub-modules. When I use this structure, the correct source is used when creating the SVN tag. I'm trying to move a bunch of the declarations into

Re: mvn release:prepare cannot tag correctly from a branch

2010-06-14 Thread Ed Hillmann
Hi all. Some more info... when I change the developerConnection back to the URL, it's even worse. The tag reflects the code in the trunk instead of in the branch (I can tell because the POMs have different version numbers... the tag has the version number of the trunk instead of the branch... and

mvn release:prepare cannot tag correctly from a branch

2010-06-14 Thread Ed Hillmann
I've got my Maven project checked out from a branch using SVN. The SVN repository structure is the "standard" one trunk tags branches I've checked out a working copy from a branch, and have run release:prepare on it. It all works, but then the release:perform fails. When I look at the tag in S

Re: Can I revert a release after release:clean has been run?

2010-02-14 Thread Ed Hillmann
On Mon, Feb 15, 2010 at 9:10 AM, Stephen Connolly wrote: > eh can you not just type in the older version number while running the > release? > > afaik, it will accept any verion as the new version (even the previous > version) > > I think you are looking to make things more complex than they alr

Can I revert a release after release:clean has been run?

2010-02-14 Thread Ed Hillmann
Hi. Is it possible to revert a release after everything's been completed. The scenario is this: we made a release on Friday, and it was discovered on Monday that a serious regression took place. We want to re-release the artifacts in question with a fix. I see that there's a release:clean goal

Assembly plugin: using multiple descriptors effectively

2010-01-17 Thread Ed Hillmann
Hi all. I've been playing with the assemby plugin for a bit now, but not getting it to do what I'd like. I'll describe what I'd like, and any help would be great. I've got a maven module that uses the assembly plugin to construct a instalation package of some software. It's just a gzipped tarfi

Re: Can I manually deploy a sources jar using deploy-file?

2009-10-08 Thread Ed Hillmann
On Fri, Oct 9, 2009 at 12:34 PM, Kalle Korhonen wrote: > Use a classifier > > http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploying-with-classifiers.html > (and read the documentation) > > Kalle > > > Perfect! Thanks, Ed

Can I manually deploy a sources jar using deploy-file?

2009-10-08 Thread Ed Hillmann
Hi. To date, I've been manually deploying an artifact using mvn:deploy-file, as the artifact is built using an alternative build tool (ant). This has been working fine to date. Now, I'd like to be able to deploy the artifact's sources as well, so I can see the source from NetBeans. We have othe

Re: Maven 2 TestNG skipping some tests

2009-09-28 Thread Ed Hillmann
On Tue, Sep 29, 2009 at 1:14 AM, Toby Hobson wrote: > I'm finding the TestNG plugin to be a bit flaky. For example I have a few > tests defined in a couple of classes and I wanted to add a new test class > so > I created a new class: > > package com.pingmenow.services; > import org.testng.annotati

Fwd: Q: How can I define a link that calls a Javascript function?

2009-09-01 Thread Ed Hillmann
I found the problem, and it was me. I did not define the Javascript method correctly in the anchor. Using the example I cited: This was wrong. When I define it correctly: It worked as expected. Sorry for the interruption. Thanks, Ed -- Forwarded message -- From: Ed

Q: How can I define a link that calls a Javascript function?

2009-09-01 Thread Ed Hillmann
Hi all. I've trying to write some documentation in xdoc, that defines web pages that are generated by Maven. I've been able to update the site.xml document so that I can define some Javascript functions in the HTML's element. That's all good. When I generate the page, I can see the Javascript

Re: How to use alternative version numbering scheme

2009-08-19 Thread Ed Hillmann
On Wed, Aug 19, 2009 at 3:55 PM, Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > > The numbering scheme is only really important if you are using version > ranges... > > If you are using version ranges, you really have to use Maven's > scheme, or else ensure that String sorting works

Re: How to use alternative version numbering scheme

2009-08-18 Thread Ed Hillmann
On Wed, Aug 19, 2009 at 12:58 PM, Wendy Smoak wrote: > > Have you tried it? We use a four part version for the .NET projects > at work built with Maven, and I haven't seen any problems... > > -- > Wendy > > Yes, when all else fails, have a play. I started using the standard logic with four-part

How to use alternative version numbering scheme

2009-08-18 Thread Ed Hillmann
Hi all. I'm in the middle of writing a new software application (using Maven), which will eventually be released with some existing software packages (that don't use Maven). Since I've started, I've use the standard version numbering scheme for my applicaiton (at the moment, it's 1.00-SNAPSHOT).

Re: Telling mvn to look for .m2 somewhere other than user home directory

2009-05-26 Thread Ed Hillmann
I also think you can use the following command-line parameters: org.apache.maven.global-settings to assign the location of global settings org.apache.maven.user-settings to assign the location of the user's settings For our developers, we use the following alias for mvn mvn -Dorg.apache.maven.gl

Re: Are Maven profiles like Ant targets?

2008-12-16 Thread Ed Hillmann
On Wed, Dec 17, 2008 at 6:58 AM, Trevor Harmon wrote: > That plugin is fine if you want to use DocBook as a source for Doxia, but > it's not designed for stand-alone documentation created using DocBook and > the DocBook XSL stylesheets. The Xslt task in Ant works great for that, > though. > I've

Re: Is there DocBook plugin support for Maven 2?

2008-11-03 Thread Ed Hillmann
On Mon, Nov 3, 2008 at 11:10 PM, Mimil <[EMAIL PROTECTED]> wrote: > > Hello, > > You should definitly have a look to docbkx-tools plugin ( > http://code.google.com/p/docbkx-tools/ > http://code.google.com/p/docbkx-tools/ and > http://www.agilejava.com/docbkx/docbkx-samples/html/manual.html > http:

Is there DocBook plugin support for Maven 2?

2008-11-02 Thread Ed Hillmann
Hi all. I was reading in Better Builds With Maven that it supports DocBook for its site generation (specifically, section 3.10). All of the documentation I've come across only mentions fmt, xdoc and fml. I have found some plugins out there, but a bunch seem to be pre-alpha stage. One of the mor

Re: Are we blocked by central Maven repo?

2008-09-29 Thread Ed Hillmann
On Tue, Sep 30, 2008 at 9:38 AM, Jason van Zyl <[EMAIL PROTECTED]> wrote: > We could start publishing a feed, but depending on the IP of the machine is > probably not the best idea. Given that we've installed a load balancer the > IP you get is going to be a whatever you get. > Thanks for the info.

Re: Are we blocked by central Maven repo?

2008-09-29 Thread Ed Hillmann
2008/9/30 Dan Tran <[EMAIL PROTECTED]>: > repo1.maven.org has a new IP Address, so if you hardcoded > repo1.maven.org in your /etc/hosts you will have this problem. Sorry > if this s a repeat. > > -D We're having this exact same problem. Our Nexus repository suddenly over the weekend couldn't ac

Re: I am behind a corporate proxy Maven does not support : org.apache.maven.plugins:maven-archetype-plugin does not exist

2008-08-07 Thread Ed Hillmann
On Fri, Aug 8, 2008 at 6:21 AM, pkpkpkpk <[EMAIL PROTECTED]> wrote: > > Hi, > > I tried downloading from > http://mvnrepository.com/artifact/plugins.org.apache.maven.plugins/maven-archetype-plugin/1.0-alpha-1, > but this jar seems to be corrupted. > > What I am trying to achieve is a way to downloa

Re: Child site.xml insists on inheriting the parent's site.xml

2008-07-21 Thread Ed Hillmann
> > Please do > > http://jira.codehaus.org/browse/MSITE > Thanks. http://jira.codehaus.org/browse/MSITE-345 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Child site.xml insists on inheriting the parent's site.xml

2008-07-20 Thread Ed Hillmann
On Sat, Jul 19, 2008 at 2:39 AM, Dennis Lundberg <[EMAIL PROTECTED]> wrote: > This sounds a lot like one of the bugs that was fixed in version 2.0-beta-7 > of Maven Site Plugin. Make sure you are using that version of the plugin. > Hi Dennis. I've just updated my POMs so that they are using the 2.

Child site.xml insists on inheriting the parent's site.xml

2008-07-17 Thread Ed Hillmann
Can someone please tell me what I am doing wrong. I've read that menu items, by default, do not get inherited. I'm using Maven 2.0.9. I have a parent project with two child modules. The parent's site.xml file looks like

Re: How to make nexus work with thirdparty libraries??

2008-06-11 Thread Ed Hillmann
On Wed, Jun 11, 2008 at 4:59 PM, Kent Närling <[EMAIL PROTECTED]> wrote: > Actually, I tried to upload this plugin manually to our nexus repository, > but cannot get it to install properly... > > Trying the command: > b-plugin\1.1>mvn deploy:deploy-file -DgroupId=com.sun.tools.xjc.maven2 > -Dartifa

Re: How to make nexus work with thirdparty libraries??

2008-06-10 Thread Ed Hillmann
On Tue, Jun 10, 2008 at 3:58 PM, Kent Närling <[EMAIL PROTECTED]> wrote: > I have read the FAQ on how to upload thirdparty jars to a repository, but > cannot seem to get it working? > > I have tried to upload the jacorb jar to our own local repository (nexus) > with the command: > mvn deploy:deploy

Can a project define multiple distributionManagement sites?

2008-05-20 Thread Ed Hillmann
Hi all. I've got a Maven2 project going, and I'm working out the process where I deploy my generated site onto an internal Tomcat server. So, in my POM file, I have the following: My Projects Website file://myServer/acct/mywww/tomcat/webapps/myproject-trunk

Re: mvn site not generating correct link to child modules?

2008-02-12 Thread Ed Hillmann
I still can't get it to work (using site:run), but I noticed something odd. When the files are staged, the Name of the child Project is used as the name of the subfolder. So, after running site:stage, I can see /parentDirectory/ When I say name, I mean the value in the child project's POM in th

Re: mvn site not generating correct link to child modules?

2008-02-12 Thread Ed Hillmann
On Feb 13, 2008 10:51 AM, Edelson, Justin <[EMAIL PROTECTED]> wrote: > I think you want the site:stage goal: > http://maven.apache.org/plugins/maven-site-plugin/stage-mojo.html > > Justin > OK, I've renamed all my projects, so they don't contain spaces. So it completes. But the links are still

Re: mvn site not generating correct link to child modules?

2008-02-12 Thread Ed Hillmann
> I think you want the site:stage goal: > http://maven.apache.org/plugins/maven-site-plugin/stage-mojo.html > > Justin > Thanks for the help, Justin. I've tried running mvn site:stage, and it fails with the error Embedded error: Error rendering Maven report: Exit code: 1 - /bin/sh: /u01/ct/acct

mvn site not generating correct link to child modules?

2008-02-12 Thread Ed Hillmann
Hi all. I'm trying out the site generation functionality of maven. I have a parent project which contains 2 child projects. So, my parent POM looks like child1 child2 The child projects are in a subdirectory of the parent project. So the file directory look like par

Re: Timeframe for 2.4 release of maven plugins?

2007-12-10 Thread Ed Hillmann
> > Follow the development list for the project and you'll see activity > leading up to a release (or not.) In this particular case I've seen > lots of traffic lately about Surefire [1], and it seems that they are > getting close to 2.4. Since you're using the snapshots, I'm sure your > feedback

Timeframe for 2.4 release of maven plugins?

2007-12-10 Thread Ed Hillmann
Hi all. I've been writing a prototype using Maven, and loving it. I want to try out the release functionality now, but whenever I do, it complains that I'm using -SNAPSHOT versions of libraries. Which I am. I'm using a 2.4-SNAPSHOT of the maven-surefire-report-plugin, and well as 2.4-collab-SNA