Re: How to add a directory first on the classpath using launch4j and maven?

2012-07-18 Thread Wim Deblauwe
It is open source, but I think launch4j itself cannot do it after investigating launch4j and the source code of the plugin. I asked a question in the launch4j help forum, hopefully, they can guide me further. 2012/7/18 Wayne Fay wayne...@gmail.com

Re: Run a multimodule build up to a certain module in maven 3

2011-05-09 Thread Wim Deblauwe
page itself are very short: http://maven.apache.org/guides/mini/guide-multiple-modules.html and they link to a page in Maven: The definitive guid, but the link ( http://www.sonatype.com/books/maven-book/reference/multimodule.html) is broken. regards, Wim 2011/5/5 Wim Deblauwe wim.debla

Run a multimodule build up to a certain module in maven 3

2011-05-05 Thread Wim Deblauwe
Hi, Suppose the following multimodule project project + client-common + client-gui + server-common + server-api + server + installer + installer-gui I want to run the build up to the 'server' module, but not run the installer and installer-gui modules. What would be the easiest way to

NullPointerException in maven assembly plugin

2011-03-14 Thread Wim Deblauwe
Hi, I am upgrading my projects from maven 2 to maven 3 and most of them are fine. However, there is one project that gives a NullPointerException during the assembly: maven builder waiting mavenExecutionResult exceptions not empty org.apache.maven.lifecycle.LifecycleExecutionException: Failed to

[versions-maven-plugin] Why is the default to generate backup poms?

2010-12-06 Thread Wim Deblauwe
Hi, I wonder why the versions-maven-plugin generates backup poms by default? I would assume that 95% of maven users also uses some kind of version control system, so I really don't see the need for that. regards, Wim

Re: [versions-maven-plugin] Why is the default to generate backup poms?

2010-12-06 Thread Wim Deblauwe
, 2010 at 13:57, Wim Deblauwe wim.debla...@gmail.com wrote: Hi, I wonder why the versions-maven-plugin generates backup poms by default? I would assume that 95% of maven users also uses some kind of version control system, so I really don't see the need for that. regards

Re: Is there any maven plugin to add dependency to existing pom.xml ?

2010-09-14 Thread Wim Deblauwe
If you use IntelliJ IDEA, you can press ALT-INSERT in a dependencies section and it will allow you to choose from all the dependencies that are in your local repo. Very neat. Not sure why you would want this in a plugin? 2010/9/14 Wayne Fay wayne...@gmail.com Is there any maven plugin to

Re: Surefire - can you print TestNG results to stdout?

2010-09-01 Thread Wim Deblauwe
Have you tried configuring this? http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#redirectTestOutputToFile http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#redirectTestOutputToFile 2010/8/31 Bogdan Calmac bcal...@gmail.com In the old ant world, the

How to activate a profile during release:prepare?

2010-08-31 Thread Wim Deblauwe
Hi, I know that during the release:perform, there is a property 'performRelease' that is set to true. I use this to activate a release profile. However, I need to do the same during the release:prepare. Is there something like a performPrepare property? regards, Wim

Re: How to activate a profile during release:prepare?

2010-08-31 Thread Wim Deblauwe
/8/31 Antonio Petrelli antonio.petre...@gmail.com 2010/8/31 Wim Deblauwe wim.debla...@gmail.com: I know that during the release:perform, there is a property 'performRelease' that is set to true. I use this to activate a release profile. However, I need to do the same during

Re: How to activate a profile during release:prepare?

2010-08-31 Thread Wim Deblauwe
It does not even matter, because I don't think I can add a separate configuration for perform or prepare? 2010/8/31 Antonio Petrelli antonio.petre...@gmail.com 2010/8/31 Anders Hammar and...@hammar.net: Wim wants it for the prepare goal. Your link is for the perform goal. Come on a bit of

Re: Reverse dependency:tree?

2010-07-20 Thread Wim Deblauwe
I don't know of such a tool, but if you are running linux, you could create a shell script that relies on dependency:tree. You would need to check out all the projects you want to monitor, run dependency:tree (or dependency:list) on them with a grep on the artifact and print out those that match.

Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-15 Thread Wim Deblauwe
', let's not go there! !-- Frank Gorham-Engard → Be kinder than necessary. Everyone you work with is fighting some kind of battle. -Original Message- From: Wim Deblauwe [mailto:wim.debla...@gmail.com] Sent: Tuesday, July 13, 2010 5:10 AM To: Maven Users List Subject: Running

Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-15 Thread Wim Deblauwe
That would mean I would have to call maven plugins from inside the maven antrun plugin. Seems odd and no idea if that is even possible? 2010/7/15 Ron Wheeler rwhee...@artifact-software.com Can't you order the tasks inside Ant? Ron On 15/07/2010 2:31 AM, Wim Deblauwe wrote: I do not think

Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
Hi, I need to run the antrun plugin twice in the packaging phase. I found this on the wiki: http://docs.codehaus.org/display/MAVENUSER/MiniGuide-AntMultiPhase However, it speaks of different lifecycle phases. I tried with the same phase and that works, however, I need to run another plugin in

Re: Re : Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
: Wim Deblauwe wim.debla...@gmail.com À : Maven Users List users@maven.apache.org Envoyé le : Mar 13 juillet 2010, 11h 09min 36s Objet : Running antrun plugin twice in same phase with another plugin in between? Hi, I need to run the antrun plugin twice in the packaging phase. I found

Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
I had a look at the maven 2.2.x code and I created a small patch that does it. See http://jira.codehaus.org/browse/MNG-4727 All the patch does is sorting the 'MojoExecution' classes based on their id. It is very few lines of code really. It is a bit hackish as you need to use step- in your id/

Re: Run external tasks using maven

2010-07-12 Thread Wim Deblauwe
Just call the run goal of the antrun plugin on the command line, like this: mvn antrun:run regards, Wim 2010/7/12 QkI kukis...@gmail.com Hi, Is it possible to run ant tasks which is not connected with any build lifecycle phase? In other word I would like to perform some action on demand

Re: Run external tasks using maven

2010-07-12 Thread Wim Deblauwe
You need specify the configuration tag as a child tag of the plugin tag: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-antrun-plugin/artifactId version1.4/version executions execution

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
Yes, since that removes the whole repo. I only want to delete the repo dir of the artifact I am about to build. 2010/3/1 Nick Klauer kla...@gmail.com You mean besides simply deleting the ${user.home}/.m2/repository directory? On Mon, Mar 1, 2010 at 12:41 PM, Wim Deblauwe wim.debla

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
, 2010 at 1:41 PM, Wim Deblauwe wim.debla...@gmail.com wrote: what is the best way if I want to erase all the artifacts from my local repo of the thing i am about to build using Maven? I tried the dependency plugin, but that only seems to remove the _dependencies_ of my artifact

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
fill up my harddisk. regards, Wim 2010/3/2 David Hoffer dhoff...@gmail.com Just wondering, why do you want to do this? -Dave On Tue, Mar 2, 2010 at 5:29 AM, Wim Deblauwe wim.debla...@gmail.com wrote: Indeed. I would have expected the goal to remove all previously generated artifacts

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
On Tue, Mar 2, 2010 at 6:28 AM, Wim Deblauwe wim.debla...@gmail.com wrote: To avoid filling up the disk. I have a virtualized ubuntu linux which has been given 50 GB and runs Nexus and Hudson. When Hudson builds using maven, it copies a lot of the nexus to the local repo. The local repo

Purging local repository

2010-03-01 Thread Wim Deblauwe
Hi, what is the best way if I want to erase all the artifacts from my local repo of the thing i am about to build using Maven? I tried the dependency plugin, but that only seems to remove the _dependencies_ of my artifact, not the current artifact. regards, Wim

Plugin to check if something changed since the last tag?

2010-02-22 Thread Wim Deblauwe
Hi, is there such a thing as a plugin that checks if there have been any changes in the trunk of your project, since the last release you have done? I want to know this to avoid that you release a module in your project when nobody really checked in any code to that module, and so a release is

How to structure my base poms?

2009-10-27 Thread Wim Deblauwe
Hi, we have java and flex projects at work. We currently have 1 base pom that contains the configurations we want to use for both projects. Problem with this is: flex projects inherit configuration for javadoc and pmd for example, which they do not want. I want to do this a bit more clean and

Re: How to avoid multiple spring versions?

2009-10-16 Thread Wim Deblauwe
at 7:35 PM, Jamie Whitehouse basil.whiteho...@genesyslab.com wrote: I don't, but Wim Deblauwe does who originally asked the question. My suggestion was aside from what he required in their own builds, to also define dependencies for each of the Spring components at the same version

Re: How to avoid multiple spring versions?

2009-10-13 Thread Wim Deblauwe
basil.whiteho...@genesyslab.com wrote: So you need to define a dependency for each one of these individual spring artifacts in your build in order to override the version. -Original Message- From: Wim Deblauwe [mailto:wim.debla...@gmail.com] Sent: Monday, October 12, 2009 5:11 AM

Re: Excluding a directory with subdirectories in assembly plugin

2009-10-12 Thread Wim Deblauwe
Thanks, excludewebapps/root/**/exclude is what I needed, I don't mind to have the root dir itself, since I need to place something else there anyway. regards, Wim 2009/10/9 Stephen Connolly stephen.alan.conno...@gmail.com 2009/10/9 Wim Deblauwe wim.debla...@gmail.com Hi, I have

How to avoid multiple spring versions?

2009-10-12 Thread Wim Deblauwe
Hi, we are using the spring framework ourselves and use the following dependency: dependency groupIdorg.springframework/groupId artifactIdspring/artifactId version2.5.6/version /dependency Some of our dependencies also

Re: How to avoid multiple spring versions?

2009-10-12 Thread Wim Deblauwe
a dependency on spring 2.5.6 and another dependency that has a dependency on Spring 2.5.5, the Maven will use Spring 2.5.6 when building your pom. Jeff MAURY On Mon, Oct 12, 2009 at 10:35 AM, Wim Deblauwe wim.debla...@gmail.com wrote: Hi, we are using the spring framework ourselves and use

Excluding a directory with subdirectories in assembly plugin

2009-10-09 Thread Wim Deblauwe
Hi, I have an assembly descriptor with the following: assembly .. dependencySets dependencySet unpacktrue/unpack scopeprovided/scope includes includefoo:bar:zip/include /includes unpackOptions

Add arbitrary dependency in assembly

2009-10-02 Thread Wim Deblauwe
Hi, How do you add an arbitrary dependency in an assembly descriptor? I have a maven project that builds a war file. I want to assemble this war file together with a zip file. I have this zip file in my repository. I currently have added the zip file as a dependency in my pom.xml and added a

Re: Add arbitrary dependency in assembly

2009-10-02 Thread Wim Deblauwe
2009/10/2 Antonio Petrelli antonio.petre...@gmail.com 2009/10/2 Wim Deblauwe wim.debla...@gmail.com: I tried setting the scope to 'provided' but then the assembly cannot find that zip file it seems. You have to add the scope element and set it to provided in the dependencySet element

Re: No primary artifact to install ?

2009-09-21 Thread Wim Deblauwe
Marvin Froeder velo...@gmail.com Now I got curious What is up with flexmojos? VELO On Wed, Sep 16, 2009 at 6:31 AM, Wim Deblauwe wim.debla...@gmail.com wrote: It seems the problem was not related to assembly, but to flex mojos. Thank you for your help. regards, Wim 2009/9

No primary artifact to install ?

2009-09-16 Thread Wim Deblauwe
Hi, I have a maven project with 'swf' packaging. I also have the assembly plugin configured as follows: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-assembly-plugin/artifactId executions execution idassembly/id goals

Re: No primary artifact to install ?

2009-09-16 Thread Wim Deblauwe
this one on the command line). Change _goalsingle/goal_ to _goalassembly/goal_ and try again. Best regards, Aleksey Didik Wim Deblauwe ?: Hi, I have a maven project with 'swf' packaging. I also have the assembly plugin configured as follows: plugin

Generate pdf from confluence page during build?

2009-09-16 Thread Wim Deblauwe
Hi, I want to export a confluence page (or pages if possible) when I do a maven build. Currently, the pdf export is checked into SVN, but we have to remember to manually update the file each time something has changed to Confluence. It would be great if we could automate this. is there anybody

Re: [ANN] Failsafe Maven Plugin 2.4.3-alpha-1 released.

2009-05-26 Thread Wim Deblauwe
Is there an explanation somewhere on when to use surefire and when this failsafe plugin? What are the main differences? regards, Wim 2009/5/25 Stephen Connolly stephen.alan.conno...@gmail.com The Mojo team is pleased to announce the release of the Failsafe Maven Plugin, version

Re: [ANN] Flexmojos 3.2 Released

2009-05-09 Thread Wim Deblauwe
Where is the documentation on the parameters you can pass for unit testing? I am especially looking for setting the test timeout (FLEXMOJOS-67). regards, Wim 2009/5/8 Marvin Froeder velo...@gmail.com Hi people, I released last night the latest version of flexmojos, version 3.2.0. Release

Re: Extracting classpath for an application from maven

2009-03-07 Thread Wim Deblauwe
This might be handy for this: http://mojo.codehaus.org/appassembler/appassembler-maven-plugin/ 2009/3/7 Roman Kournjaev kournj...@gmail.com Hi All I have a maven based application, well now i want to run it in cmd mode, it means just executing the compiled class. How do i extract the

Force profile to be present during release

2009-02-23 Thread Wim Deblauwe
Hi, According to http://maven.apache.org/plugins/maven-release-plugin/examples/perform-release.html, you can specify a profile to be enabled during releasing. What does this exactly do when there is no such profile defined in the user's settings.xml? Will the release:prepare and/or

Perform release without updating pom to new SNAPSHOT version

2009-01-19 Thread Wim Deblauwe
Hi, is it possible to do release:perfom which does everything like normal, except updating the pom.xml to a new SNAPSHOT version? We use branches per version, so if I release on my branch int_module_1.0, I don't want the pom.xml to change to 1.1-SNAPSHOT. In fact, I want the branch to be locked.

Re: Perform release without updating pom to new SNAPSHOT version

2009-01-19 Thread Wim Deblauwe
a int_module_1.0-1 and your pom finally will state int_module_1.0-2-SNAPSHOT LieGrue, strub --- Wim Deblauwe wim.debla...@gmail.com schrieb am Mo, 19.1.2009: Von: Wim Deblauwe wim.debla...@gmail.com Betreff: Perform release without updating pom to new SNAPSHOT version An: Maven Users List users

Re: where to place Test support/reusable fixture classes?

2009-01-11 Thread Wim Deblauwe
You don't have to create a separate project if you don't want to. You can export the test classes in a separate jar with the 'test' classifier and depend on that jar. regards, Wim 2009/1/10 Jeff Jensen jeffjen...@upstairstechnology.com I suggest creating a separate project, e.g.

Put the version of a specifc dependency in a property

2008-12-24 Thread Wim Deblauwe
Hi, I have a project (war) that has an other project (swf) as a dependency. The war contains an index.jsp that refers to the swf dependency. Currently, it is hardcode like 'myflexproject-1.0-SNAPSHOT.swf'. I would like to put some placeholder there and let maven filter this index.jsp and fill in

Re: Put the version of a specifc dependency in a property

2008-12-24 Thread Wim Deblauwe
the dependency's version to the property, or hmm I've another idea for the versions maven plugin Sent from my iPod On 24 Dec 2008, at 09:46, Wim Deblauwe wim.debla...@gmail.com wrote: Hi, I have a project (war) that has an other project (swf) as a dependency. The war contains an index.jsp

Re: Put the version of a specifc dependency in a property

2008-12-24 Thread Wim Deblauwe
groupIdcom.bar/groupId artifactIdfoo/artifactId version${foo.version}/version /dependency /dependencies ... /project Sent from my iPod On 24 Dec 2008, at 10:18, Wim Deblauwe wim.debla...@gmail.com wrote: Hi Stephen, thank you for your quick reply, but I don't understand what you

Filtering web resources with values from settings.xml

2008-12-08 Thread Wim Deblauwe
Hi, is it possible to filter external web resources as explained here: http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html, but using the values from my settings.xml instead of values from an extra file? regards, Wim

PMD check binding to other lifecycle phase?

2008-12-01 Thread Wim Deblauwe
Hi, I don't really understand why the PMD check is bound to the verify lifecycle phase by default? This means that my unit tests run first and then I get an error that there is a PMD violation. Would it not be better to do this in the validate phase? Other candidates might be process-sources or

Re: [Public service announcement] mirrors of Central and considerate repo use

2008-11-30 Thread Wim Deblauwe
+1 for that 2008/11/29 Paul Benedict [EMAIL PROTECTED] I think Maven should download and configure itself with a list of mirrors on first execution. Why leave this up to the users? I bet most will likely not care to change. Paul On Sat, Nov 29, 2008 at 8:33 AM, Wendy Smoak [EMAIL

Different checkstyle config for main and test?

2008-11-10 Thread Wim Deblauwe
Hi, is it possible to define a different checkstyle configuration in maven for the main and the tests? I want to allow underscores in method names, but only in my test source directory. regards, Wim

Re: Different checkstyle config for main and test?

2008-11-10 Thread Wim Deblauwe
I have used profiles before, I don't think you can use that. How would you do this? 2008/11/10 [EMAIL PROTECTED] I think you can use profiles for that. bruno On Nov 10, 2008 11:43am, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, is it possible to define a different checkstyle

Maven picking test classifier dependencies twice

2008-11-05 Thread Wim Deblauwe
Hi, I am seeing a really strange problem with Maven in a multimodule build. (Using 2.0.8 or 2.0.9) I have a multimodule with some submodules: + parent + server-common + module 1 + module 2 + ... Both 'module 1' and 'module 2' depend on server-common and the test classes exposed by

Re: Best Practices Maven release-plugin multimodule with module dependencies ?

2008-10-30 Thread Wim Deblauwe
If the projects are released independent, then you probably better of not using a multimodule structure. What things are defined in your parent? If this is only pom things, then you are better of creating a project of pom packaging and 2 separate projects. regards, Wim 2008/10/30 Lionel C.

Re: maven-release-plugin removes comments

2008-10-30 Thread Wim Deblauwe
A quick search in jira makes you think it should have been fixed: http://jira.codehaus.org/browse/MRELEASE-255, although this related bug ( http://jira.codehaus.org/browse/MRELEASE-266) is still open. Not sure if all comments are left alone or just specific things? regards, Wim 2008/10/30

Re: Dependencies and cargo plugin?

2008-10-24 Thread Wim Deblauwe
phasepost-integration-test/phase goals goalstop/goal /goals /execution /executions /plugin Marc. Wim Deblauwe a écrit : Hi, It seems that I need to add all my dependencies in my

Re: Dependencies and cargo plugin?

2008-10-24 Thread Wim Deblauwe
: http://repository.codehaus.org/org/codehaus/cargo/cargo-maven2-plugin beta 1 is also available. Hth, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS Haarlem www.iprofs.nl On Fri, Oct 24, 2008 at 11:12 AM, Wim Deblauwe [EMAIL PROTECTED] wrote: In what repo

Dependencies and cargo plugin?

2008-10-23 Thread Wim Deblauwe
Hi, It seems that I need to add all my dependencies in my pom.xml 2 times when I use a war project with cargo. Is there a way to avoid this? This is very annoying to try to find out all the dependencies (and their transitive dependencies manually) and have to add those to the dependencies/

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-09-30 Thread Wim Deblauwe
Hi Dan, seems extremely usefull to me. 2 questions I did not find an answer to in the documentation: 1) You spawn a different maven process are thoses processing using MAVEN_OPTS by default (most important would be the memory settings I have set)? 2) How does it know how to stop walking up the

Re: Always getting 'used undeclared dependencies' warning when using TestNG

2008-09-05 Thread Wim Deblauwe
, etc? Cheers, Brett 2008/9/1 Wim Deblauwe [EMAIL PROTECTED] Hi, when I run 'mvn dependency:analyze' I always get this warning: [WARNING] Used undeclared dependencies found: [WARNING]junit:junit:jar:3.8.1:test I assume it is because I use TestNG and that has a transitive

Re: [ANN] Versions Maven Plugin 1.0-alpha-1 released

2008-09-05 Thread Wim Deblauwe
Does it work if you are not using the central repo directly but a repository manager (archiva in my case) in between. Will this plugin see the newer versions, even if they are not in archiva yet? regards, Wim 2008/9/5 Stephen Connolly [EMAIL PROTECTED] The Mojo team is pleased to announce the

Re: how, exactly, does maven compare versions

2008-09-05 Thread Wim Deblauwe
Hi, we have a kind of strange version mechanism, and I wonder I can 'translate' this to maven. This is how it works: E1.01.01 E1.01.02 .. V1.01 Versions starting with E are test builds leading into the release (V1.01 in the example) Is 1.01 considered newer then 1.01-E01 for example? regards,

Always getting 'used undeclared dependencies' warning when using TestNG

2008-09-01 Thread Wim Deblauwe
Hi, when I run 'mvn dependency:analyze' I always get this warning: [WARNING] Used undeclared dependencies found: [WARNING]junit:junit:jar:3.8.1:test I assume it is because I use TestNG and that has a transitive dependency on JUnit. Why should I declare a direct dependency on JUnit if I

Re: starting with maven

2008-08-22 Thread Wim Deblauwe
An alternative is to turn your jar file into an executable jar file where you put your main class in the manifest file. project build plugins plugin artifactIdmaven-jar-plugin/artifactId configuration archive

Re: Assembly with module binaries?

2008-08-21 Thread Wim Deblauwe
} or ${artifact.artifactId} (synonyms in the module binaries section, IIRC). ${artifactId} references the project running, not the artifact being processed. -john Wim Deblauwe wrote: Hi, I'm following the instruction on http://maven.apache.org/plugins/maven-assembly-plugin/examples/multimodule

Assembly with module binaries?

2008-08-20 Thread Wim Deblauwe
Hi, I'm following the instruction on http://maven.apache.org/plugins/maven-assembly-plugin/examples/multimodule/module-binary-inclusion-simple.html I would like to create a directory with 2 subdirecties of my child modules. The assembly plugin runs, but it seems that the ${artifactId}

How are the 'Dependency Repository Locations' configured?

2008-08-20 Thread Wim Deblauwe
Hi, I ran 'mvn site' and the 'Dependencies' report gives a lot of useful information. However, under the heading 'Dependency Repository Locations' I see 'apache.snapshots' and 'central', although I configured my settings.xml to use my repository manager (Archiva) exclusively. How can I change the

Problem with Maven making internet connection drop out

2008-03-21 Thread Wim Deblauwe
Hi, I have a problem with running the Atlassian PDK. They use Maven 2. See http://confluence.atlassian.com/display/DEVNET/How+to+Build+an+Atlassian+Pluginfor their instructions. When I try to run mvn idea:idea, everything seems to work for a while, but then in the midst of the work being done,

Re: Problem with Maven making internet connection drop out

2008-03-21 Thread Wim Deblauwe
I will try, what is the svn url? 2008/3/21, Stephen Connolly [EMAIL PROTECTED]: Does the same thing happen when building Hudson? Hudson has such a mad collection of dependencies that it should cause the same issue for you IMHO. -Stephen On Fri, Mar 21, 2008 at 7:54 AM, Wim Deblauwe

Re: [ANN] Maven Repository Builder 1.0-alpha-2 Released

2008-03-02 Thread Wim Deblauwe
Is there a website of this plugin? Can it be used to create a backup repository with all dependencies (including plugins, etc...) to build? regards, Wim 2008/3/1, John Casey [EMAIL PROTECTED]: The Maven team is pleased to announce the release of the Maven Repository Builder shared library,

Re: Repeating resource collections

2008-01-27 Thread Wim Deblauwe
maybe you can use a common parent pom that defines those? regards, Wim 2008/1/25, [EMAIL PROTECTED] [EMAIL PROTECTED]: As I continue to move our Ant build to Maven artifacts, I have found myself repeating resource collections, particularly the includes and excludes criteria. In ant, such

Re: Clearcase Snapshot View Synchronisation

2008-01-23 Thread Wim Deblauwe
Do you have an own build system? Maybe you are better of using something like Hudson? The command to update the view is scm:update ( http://maven.apache.org/scm/plugins/index.html#update-mojo) regards, Wim 2008/1/22, Richard M Smith [EMAIL PROTECTED]: Can anyone supply some sample code for

Re: Clearcase Snapshot View Synchronisation

2008-01-23 Thread Wim Deblauwe
Hudson is a lot easier to use then Cruise Control (I have not used Cruise Control, but other people have told me that). It has a ClearCase plugin (I use it also) so definitely worth a try. regards, Wim 2008/1/23, Richard M Smith [EMAIL PROTECTED]: Thanks for replying Wim, We do have our own

Re: Notification on deployment of a new version of artifact

2007-12-28 Thread Wim Deblauwe
There is an RSS feed you can track on http://www.mvnrepository.com/ regards, Wim 2007/12/28, amit kumar [EMAIL PROTECTED]: HI, Is it possible to notify ( via email may be ) whenever a newer version of artifact is deployed into the remote maven repository? Any ideas? Regards, Amit --

Re: The Maven team needs help from translators

2007-11-25 Thread Wim Deblauwe
Nice plugin report. Is this plugin freely available? regards, Wim 2007/11/25, Dennis Lundberg [EMAIL PROTECTED]: Lukas Theussl has updated the German resource bundle. I have uploaded an updated localization status report:

Re: [dependency plugin] Used undeclared dependencies

2007-11-22 Thread Wim Deblauwe
to declare all your dependencies your project uses, even if there are already included in one of your dependencies. Hth, Nick Stolwijk -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED] Sent: Wed 11/21/2007 4:32 PM To: Maven Users List Subject: [dependency plugin

[dependency plugin] Used undeclared dependencies

2007-11-21 Thread Wim Deblauwe
Why does the dependency plugin gives Used undeclared dependencies? What is the reason or how does maven know this? I looked at the docs ( http://maven.apache.org/plugins/maven-dependency-plugin/analyze-mojo.html), but it did not give much info on why you get this and what you can do about it.

declare dependencies depending on jdk version

2007-10-23 Thread Wim Deblauwe
Hi, I'm looking into putting swingx in the central repo. As they do not use maven to build, I need to come up with a good pom. They have 3 dependencies. Two of them are only needed when running under jdk 1.5. How can I declare this in the pom.xml? Suppose this is a part of the pom: dependencies

Re: declare dependencies depending on jdk version

2007-10-23 Thread Wim Deblauwe
of problems by simply creating 2 (or more) poms that have different classifiers to specify the difference, eg: swingx-1.0.pom swingx-1.0-jdk4.pom swingx-1.0-jdk5.pom swingx-1.0-jdk6.pom Wayne On 10/23/07, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, I'm looking into putting swingx

Re: How to release if using testng

2007-10-14 Thread Wim Deblauwe
I finally gave up on using the surefire plugin with TestNG. Now I just use antrun to run the testng ant task and generate a report. I did not know that was possible. How do you remove surefire from the lifecycle? regards, Wim -- Vigilog - an open source log file viewer:

How to release if using testng

2007-10-12 Thread Wim Deblauwe
Hi, how do other people release their maven project if they use TestNG? The only surefire that works ok with TestNG is 2.4-collab-SNAPSHOT, but since it is a snapshot, I cannot release. I could try to give the snapshot jars a real release number, but I'd rather not do that because a) it feels

Re: Re : How to release if using testng

2007-10-12 Thread Wim Deblauwe
d'origine De : Wim Deblauwe [EMAIL PROTECTED] À : Maven Users List users@maven.apache.org Envoyé le : Vendredi, 12 Octobre 2007, 8h19mn 08s Objet : How to release if using testng Hi, how do other people release their maven project if they use TestNG? The only surefire that works ok

Re: Maven Release -- Unable to enable editing on the POM - clearcase ucm

2007-10-09 Thread Wim Deblauwe
did you try with -e? 2007/10/8, Hirn, Joseph [EMAIL PROTECTED]: It is not... All of the console output is included below. The command output is blank. The next line maven logs is for more information, run.. -e switch -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED

How do people handle installers/exe/bat/sh in maven?

2007-10-02 Thread Wim Deblauwe
Hi, I have a question for the people that use maven to create an application (as opposed to a library). How do you provide an easy start point for your application? Do you use webstart? Do you use the assembly plugin and add .bat and .sh files to it? Do you create an installer (with a maven

Re: How do people handle installers/exe/bat/sh in maven?

2007-10-02 Thread Wim Deblauwe
For launch4j I simply used its Ant task that I called using the AntRun plugin. Good idea, I current use the maven plugin ( http://9stmaryrd.com/tools/launch4j-maven-plugin), but it is not maintained anymore it seems. -- Vigilog - an open source log file viewer:

How to handle aqua laf.jar?

2007-09-30 Thread Wim Deblauwe
Hi, I'm trying to get jide-oss project in the repository on dev.java.net. The people of jidesoft have done this, but for Windows users, it does not work. The jide-oss pom has only 1 dependency: dependency groupIdaqua/groupId artifactIdaqua/artifactId version5.0/version

Re: Why Maven is Hard?

2007-09-27 Thread Wim Deblauwe
What about not answering any questions on the mailinglist anymore, but only point to existing documentation. If there is no suitable docs for the question, put in a JIRA issue. That should improve the docs fast! regards, Wim 2007/9/27, Wayne Fay [EMAIL PROTECTED]: On 9/26/07, Tomasz Pik

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
You need to say that your repository is a mirror of central, see http://maven.apache.org/guides/mini/guide-mirror-settings.html for more info. regards, Wim (also from Belgium ;)) 2007/8/28, De Vleeschauwer Nele [EMAIL PROTECTED]: Hi, I'm just setting up Maven on a developer's workstation.

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
for your input, Nele. -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED] Sent: woensdag 29 augustus 2007 8:03 To: Maven Users List Subject: Re: Maven repository You need to say that your repository is a mirror of central, see http://maven.apache.org/guides/mini/guide

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
. -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED] Sent: woensdag 29 augustus 2007 9:28 To: Maven Users List Subject: Re: Maven repository How did you set up the internal repository? Did you copy a local repository to some server and made it available through http

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
On 8/22/07, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, is it possible to use the maven assembly plugin to create a remote repository? I have some custom artifacts that my build needs. I don't want to force my users to have to manually do 'mvn install:install-file' for each of those. I

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
Regards from a belgian fellow, Stéphane On 8/23/07, Wim Deblauwe [EMAIL PROTECTED] wrote: And how do you do this? 2007/8/23, Stephane Nicoll [EMAIL PROTECTED]: Hi, Yes, I'm doing this for one of my project but it's a bit messy with snapshots. Regardnig plugins, it's

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
help, regards, Wim Cheers, Stéphane On 8/23/07, Wim Deblauwe [EMAIL PROTECTED] wrote: But according to the documentation of the assembly plugin[1]: This example demonstrates the creation of repository artifacts in an assembly so that the archive can easily be used to update an *internal

Re: Maven 2 - Maven 1 converter

2007-08-22 Thread Wim Deblauwe
? why would anyone want to go back to the old maven version? 2007/8/21, Lukas Theussl [EMAIL PROTECTED]: Yeah! I want that too! :) -Lukas [EMAIL PROTECTED] wrote: I have found the maven 2 plugin to convert a project.xml (maven 1) to a pom.xml (maven 2). Is there also a maven 1 or maven

2.4-collab-SNAPSHOT of surefire?

2007-08-22 Thread Wim Deblauwe
Hi, is it still needed to use 2.4-collab-SNAPSHOT version of surefire if you use TestNG or is there already a better version? regards, Wim -- Vigilog - an open source log file viewer: http://vigilog.sourceforge.net Blog: http://www.jroller.com/page/Fester

maven assembly plugin to create a remote repository?

2007-08-22 Thread Wim Deblauwe
Hi, is it possible to use the maven assembly plugin to create a remote repository? I have some custom artifacts that my build needs. I don't want to force my users to have to manually do 'mvn install:install-file' for each of those. I have seen you can create a local repository which you need to

Re: Hudson

2007-07-07 Thread Wim Deblauwe
We also use Hudson, mainly because it is so easy to install. I wanted to try continuum, but I gave up when installation did not seem to work very smooth. regards, Wim 2007/7/6, Ravi Luthra [EMAIL PROTECTED]: I use Hudson mainly because the interface is very awesome. The AJAX controls make

Re: How can i release a version of software with the existing version is SNAPSHOT?

2007-07-07 Thread Wim Deblauwe
Use the release plugin to do a release of your module/project 2007/7/7, Baz [EMAIL PROTECTED]: All, If the software that i am building is at version 0.1-SNAPSHOT, is it possible that I can build 1.0.0.0 in official build systems? What is the best way to handle this situation? Can I pass a

Re: Reminder to vote for 2.0.8 issues

2007-06-29 Thread Wim Deblauwe
Can we vote for plugins? I would like to see a released surefire with support for the latest TestNG. regards, Wim 2007/6/29, Franz Fehringer [EMAIL PROTECTED]: I vote for MNG-2305. Franz Paul Spencer schrieb: Jason, Jira will not let you vote for an issue you created :( If it would, I

  1   2   3   4   5   >