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 > > com.akathist.maven.plugins.launch4j > >

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

2011-05-09 Thread Wim Deblauwe
ome more info. The docs on the maven 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. rega

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 do

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

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

2010-12-06 Thread Wim Deblauwe
> > http://mojo.codehaus.org/versions-maven-plugin/set-mojo.html#generateBackupPoms > > > > /Anders > > > > On Mon, Dec 6, 2010 at 13:57, Wim Deblauwe > wrote: > > > > > Hi, > > > > > > I wonder why the versions-maven-

[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: 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 > > Is there any maven plugin to add/update in & >

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 2010/8/31 Bogdan Calmac > > In the old ant world, the testng plugin woul

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 > 2010/8/31 Anders Hammar : > > Wim wants it for the prepare goal. Your link is for the perform goal. > > Come on a bit of fantasy! :-D > > http://maven.apache.or

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

2010-08-31 Thread Wim Deblauwe
/8/31 Antonio Petrelli > 2010/8/31 Wim Deblauwe : > > 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:

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: Reverse dependency:tree?

2010-07-19 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. Y

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 > Can't you order the tasks inside Ant? > > Ron > > On 15/07/2010 2:31 AM, Wim Deblauwe wrote: > >> I d

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

2010-07-14 Thread Wim Deblauwe
en 'before-before-test' should be allowed as well? But not > 'before-after-test', let's not go there! > > From: Wim Deblauwe [mailto:wim.debla...@gmail.com] > Sent: Tuesday, July 13, 2010 5:10 AM > To: Maven Users List > Subject: Running antrun plugin

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 decl

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

2010-07-13 Thread Wim Deblauwe
yourphase > > > > > > > run > > > > > > > I have not tested so I'm not sure it will work. > > Regards, > >

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 bet

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: org.apache.maven.plugins maven-antrun-plugin 1.4

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 > > 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 using maven a

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
for snapshots. > > -Dave > > On Tue, Mar 2, 2010 at 6:28 AM, Wim Deblauwe > 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

Re: Purging local repository

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

Re: Purging local repository

2010-03-02 Thread Wim Deblauwe
n, Mar 1, 2010 at 1:41 PM, Wim Deblauwe > 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

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 > You mean besides simply deleting the ${user.home}/.m2/repository directory? > > On Mon, Mar 1, 2010 at 12:41 PM, Wim Deblauwe >wrote: > > >

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 not

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 hav

Re: How to avoid multiple spring versions?

2009-10-16 Thread Wim Deblauwe
th, > > Nick Stolwijk > ~Java Developer~ > > IPROFS BV. > Claus Sluterweg 125 > 2012 WS Haarlem > http://www.iprofs.nl > > > On Tue, Oct 13, 2009 at 7:35 PM, Jamie Whitehouse < > basil.whiteho...@genesyslab.com> wrote: > > > I don't, but

Re: How to avoid multiple spring versions?

2009-10-13 Thread Wim Deblauwe
se dependencies will match up with yours, and > you will not have to change all your projects to reference these (since you > just keep referencing the POM which references these). > > Quintin Beukes > > > > On Tue, Oct 13, 2009 at 4:17 PM, Jamie Whitehouse < > basil.wh

Re: How to avoid multiple spring versions?

2009-10-12 Thread Wim Deblauwe
f you pom has 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 >wrote: > > > Hi, > &g

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: org.springframework spring 2.5.6 Some of our dependencies also depend on the spring framework, but not the same version: [INFO] +- org.apac

Re: Excluding a directory with subdirectories in assembly plugin

2009-10-12 Thread Wim Deblauwe
Thanks, webapps/root/** 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 > 2009/10/9 Wim Deblauwe > > > Hi, > > > > I have an assembly

Excluding a directory with subdirectories in assembly plugin

2009-10-09 Thread Wim Deblauwe
Hi, I have an assembly descriptor with the following: .. true provided foo:bar:zip webapps/root/**/*.* .. The zip file th

Re: Add arbitrary dependency in assembly

2009-10-02 Thread Wim Deblauwe
2009/10/2 Antonio Petrelli > 2009/10/2 Wim Deblauwe : > > 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 > "

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 ele

Re: No primary artifact to install ?

2009-09-20 Thread Wim Deblauwe
ous > What is up with flexmojos? > > > VELO > > On Wed, Sep 16, 2009 at 6:31 AM, Wim Deblauwe >wrote: > > > It seems the problem was not related to assembly, but to flex mojos. > Thank > > you for your help. > > > > regards, > > > >

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 wh

Re: No primary artifact to install ?

2009-09-16 Thread Wim Deblauwe
ed by another goal specified >>> before this one on the command line). >>> >> > > Change _single_ to _assembly_ and try again. > > > > Best regards, > > Aleksey Didik > > > > > Wim Deblauwe ?: >

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: org.apache.maven.plugins maven-assembly-plugin assembly single package src/main

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 > The Mojo team is pleased to announce the release of the Failsafe Maven > Plugin, version 2.4.3-alpha-1. > > The Failsafe Plugin is a

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 > Hi people, > > I released last night the latest version of flexmojos, version 3.2.0. > > Release notes: > http

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 > 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 classpath for this a

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 release:perform

Re: Perform release without updating pom to new SNAPSHOT version

2009-01-19 Thread Wim Deblauwe
0-1-SNAPSHOT > > so a release will create and tag a int_module_1.0-1 and your pom finally > will state int_module_1.0-2-SNAPSHOT > > LieGrue, > strub > > --- Wim Deblauwe schrieb am Mo, 19.1.2009: > > > Von: Wim Deblauwe > > Betreff: Perform release without updating pom

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: 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 > I suggest creating a separate project, e.g. "TestFramework", and place > those > types of

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

2008-12-24 Thread Wim Deblauwe
ave the jsp page load a properties file which has the version within. if >>> performance is a proven concern, have a java class load and cache the >>> version into a singleton bean >>> >>> as regards capturing the current version of a dependency, you can either &

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

2008-12-24 Thread Wim Deblauwe
ersion and link 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" wrote: > > Hi, >> >> I have a project (war) that has

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 t

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 pr

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

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, >

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

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 serve

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 Sahoo

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. <[EMA

Re: Dependencies and cargo plugin?

2008-10-24 Thread Wim Deblauwe
be found here: > 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 2

Re: Dependencies and cargo plugin?

2008-10-24 Thread Wim Deblauwe
start > > > >stop-container >post-integration-test > >stop > > >

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 section of the cargo

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 i

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,

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

2008-09-04 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

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

2008-09-04 Thread Wim Deblauwe
re not using the JUnit assert classes, 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 dependenci

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 don't

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. maven-jar-plugin true

Re: Assembly with module binaries?

2008-08-20 Thread Wim Deblauwe
actId} 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 >

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

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} substitutio

Re: fatal dependency management flaw in maven?

2008-06-30 Thread Wim Deblauwe
Would it be possible to write an enforcer plugin rule that checks the licenses of the dependencies? regards, Wim 2008/6/30 Jörg Schaible <[EMAIL PROTECTED]>: > Hi Ishaaq, > > Ishaaq Chandy wrote: > > Well, not knowing who else uses maven out there I have no > > reasonable way to > > verify or d

Re: Best practices for java version?

2008-03-28 Thread Wim Deblauwe
You can use the Maven Enforcer plugin ( http://maven.apache.org/plugins/maven-enforcer-plugin/ ) to force a specifc JDK for the modules you are building yourself. But I don't think there is anything for your dependencies that you can specify. regards, Wim 2008/3/28, david delbecq <[EMAIL PROTECT

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

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, my

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 libr

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 collections, particularly the and > criteria. > > In ant, such duplication would

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 ou

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

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, > Am

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: > > > http://people.apache.org/~dennisl/maven-project-info-repor

Re: [dependency plugin] Used undeclared dependencies

2007-11-22 Thread Wim Deblauwe
o the new version, et voila, your > code is not compiling anymore. > > It is better 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:

[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. T

Re: declare dependencies depending on jdk version

2007-10-23 Thread Wim Deblauwe
these kinds 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 PROTEC

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: s

Re: Junit 4 or TestNG 5 suite support

2007-10-21 Thread Wim Deblauwe
I don't understand either why surefire is not top-priority for the maven devs to have everthing working that JUnit and TestNG support. Especially since testing is part of the default lifecycle. regards, Wim 2007/10/19, Joel Wiegman <[EMAIL PROTECTED]>: > > Thanks for the response Patrick. > > I

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: http://vigilog.sou

Re: Re : How to release if using testng

2007-10-12 Thread Wim Deblauwe
stead. > > Yan Langlois. > > > ----- Message d'origine > De : Wim Deblauwe <[EMAIL PROTECTED]> > À : Maven Users List > Envoyé le : Vendredi, 12 Octobre 2007, 8h19mn 08s > Objet : How to release if using testng > > Hi, > > how do other people release their m

How to release if using testng

2007-10-11 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 like

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

2007-10-08 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- &

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

2007-10-06 Thread Wim Deblauwe
Is the cleartool command printed that is used? 2007/10/5, Hirn, Joseph <[EMAIL PROTECTED]>: > > Hello. > > I'm having a problem with the release:prepare goal in Linux environment. > It works fine in Windows. It is giving the following error: > > >> > [INFO] Checking out file: /

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: http://vigilog.sourceforg

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 plugi

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: aqua aqua 5.0 system ${basedir}/libs/laf.jar Maven complains with:

Re: Why Maven is Hard?

2007-09-26 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
> > documentation on how I should set up a 'company central repository'. So > > any suggestions would be welcome... > > > > Kind regards, > > > > Nele. > > > > -Original Message- > > From: Wim Deblauwe [mailto:[EMAIL PROTEC

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
n-metadata.xml but a > maven-metadata-central.xml. > > How can I solve this ? > > Thanks for your input, > > Nele. > > > > -Original Message- > From: Wim Deblauwe [mailto:[EMAIL PROTECTED] > Sent: woensdag 29 augustus 2007 8:03 > To: Maven Users L

Re: Maven repository

2007-08-28 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 workstati

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
I should get a remote repository on my website. Is this correct? thank you for your 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 >

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
g this for one of my project but it's a bit messy with > > > snapshots. Regardnig plugins, it's not possible as far as I know. Only > > > the project's dependencies can be included in a repository. > > > > > > HTH, > > > Stéphane > > &

Re: maven assembly plugin to create a remote repository?

2007-08-23 Thread Wim Deblauwe
ies can be included in a repository. > > HTH, > Stéphane > > 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 nee

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 u

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

  1   2   3   4   5   6   >