Re: Eclipse RCP/PDE building and Maven

2007-03-29 Thread Barrie Treloar
On 3/28/07, Tom Huybrechts [EMAIL PROTECTED] wrote: it's almost undocumented, and there are bugs, but this works for me: https://svn.codehaus.org/m2eclipse/tycho/trunk/ I've got PDE building headless for everything plugins, features and products

Eclipse RCP/PDE building and Maven

2007-03-28 Thread Barrie Treloar
I was trawling through the archives to see if there was a better way of building Eclipse RCP plugins via Maven and noticed the following: http://www.nabble.com/forum/ViewPost.jtp?post=3560407framed=yskin=177 (almost a year ago) and

Re: evangelising maven from the business benefits point of view

2007-03-18 Thread Barrie Treloar
On 3/19/07, Eric Redmond [EMAIL PROTECTED] wrote: Send them to the Philly Emerging Tech conference in two weeks - I'm giving a talk on the management track about the glorious benefits of managing/automating parts of your development process with Maven.

Re: evangelising maven from the business benefits point of view

2007-03-18 Thread Barrie Treloar
On 3/19/07, Barrie Treloar [EMAIL PROTECTED] wrote: On 3/19/07, Eric Redmond [EMAIL PROTECTED] wrote: Send them to the Philly Emerging Tech conference in two weeks - I'm giving a talk on the management track about the glorious benefits of managing/automating parts of your development process

Re: evangelising maven from the business benefits point of view

2007-03-17 Thread Barrie Treloar
On 3/18/07, Adam Hardy [EMAIL PROTECTED] wrote: I want the software house where I work to go to the next level with maven from where we are at the moment, which is a case of gross under-utilisation. We use maven as a glorified ant script to run tests and build jars. There are several other

Re: pde-maven-plugin usage

2007-02-21 Thread Barrie Treloar
On 2/22/07, Dan Tran [EMAIL PROTECTED] wrote: you will need to get maven-dependency-plugin to copy your dependent jars into the place where your eclipse PDE expected. See http://docs.codehaus.org/display/MAVENUSER/Eclipse+Plugin for how to use maven-dependency-plugin to create your eclipse

Re: [M2] How do you control order of plugins that execute during the same phase?

2007-02-06 Thread Barrie Treloar
On 2/7/07, matthewadams [EMAIL PROTECTED] wrote: If I have two unrelated plugins, A B, that need to run during the same build lifecycle phase, but A needs to run before B, how do I control that? For example, say I needed some aspect weaving and some persistent enhancement to go on during the

Re: [M2] How do you control order of plugins that execute during the same phase?

2007-02-06 Thread Barrie Treloar
Don't know, I asked the same question on my post. Haven't seen an answer yet. On 2/7/07, matthewadams [EMAIL PROTECTED] wrote: Thanks for the tip. Is there a JIRA on this? baerrach wrote: On 2/7/07, matthewadams [EMAIL PROTECTED] wrote: If I have two unrelated plugins, A B, that need

Re: [m2] how to control the plugin execution order

2007-02-05 Thread Barrie Treloar
http://www.nabble.com/forum/ViewPost.jtp?post=61258framed=yskin=177 Brett Porter wrote: The order is determined by the build lifecycle. You probably want: @phase generate-sources in your plugin. Within phases, order is currently indeterminate, but we intend for it to be the order

Re: [m2] how to control the plugin execution order

2007-02-05 Thread Barrie Treloar
http://www.nabble.com/forum/ViewPost.jtp?post=8404137framed=yskin=177 claims this is fixed in 2.0.5, any confirmation? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[m2] link checking plugin?

2007-02-04 Thread Barrie Treloar
I've noticed on the nabble archives reference to the m1 link checking but I can't find an equivalent in m2. I was sure the maven plugins was doing that (I vaguely recall it happening) but I can't find anything in the parent poms. Anyone know how I do link checking? Cheers

Re: [m2] checkstyle: suppressionsLocation and SuppressionFilter

2007-02-01 Thread Barrie Treloar
On 1/31/07, Barrie Treloar [EMAIL PROTECTED] wrote: suppressionsLocation appears not to set any properties like ${checkstyle.suppressionsLocation}. After looking at the source I also need to set the configuration for suppressionsFileExpressioncheckstyle.suppressions.file

[m2] checkstyle: suppressionsLocation and SuppressionFilter

2007-01-31 Thread Barrie Treloar
suppressionsLocation appears not to set any properties like ${checkstyle.suppressionsLocation}. Just by specifying this configuration it appears to work. However I am trying to share this configuration file with Eclipse and so I would like to define module name=SuppressionFilter property

[pmd:pmd] How to include src/test/java in pmd checking?

2007-01-31 Thread Barrie Treloar
It looks like pmd:pmd is not checking src/test/java and that there is no way to configure the plugin to do so. Am I missing something? (We noticed this when we added the pmd eclipse plugin and our unit tests started failing the junit ruleset)

[DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. Lifecycle ID: default. ???

2007-01-24 Thread Barrie Treloar
My pom is using a packagingzip/packaging to bind the groupIdorg.codehaus.mojo/groupId artifactIdpde-maven-plugin/artifactId for building an Eclipse RCP. Any ideas where I start to look for resolving this problem? It appears to only fail in an reactor build. If I run this from

Re: [DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. Lifecycle ID: default. ???

2007-01-24 Thread Barrie Treloar
I've seen the thread http://www.nabble.com/forum/ViewPost.jtp?post=4827726framed=yskin=177 but I have extensionstrue/extensions already. Maybe this isn't the problem. The symptom appears to be * the pde build is not run. * the pde build fails because is is missing a dependency to itself

Re: [DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. Lifecycle ID: default. ???

2007-01-24 Thread Barrie Treloar
The symptom appears to be * the pde build is not run. * the pde build fails because is is missing a dependency to itself groupId:artifactId:zip:0.5-SNAPSHOT * the path to this missing dependency is from the NEXT module the build module that creates all the assemblies. Path to dependency:

Re: [DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. Lifecycle ID: default. ???

2007-01-24 Thread Barrie Treloar
There is something wrong with dependency resolution. If I comment out the module build from my parent pom things work. I will see if I can put together a test case. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: What's the best way to specify versions for Maven Plugins?

2007-01-22 Thread Barrie Treloar
On 1/23/07, mraible [EMAIL PROTECTED] wrote: What's the best way to specify versions for Maven Plugins. In the AppFuse project, we're distributing archetypes that have plugins pre-defined in the pom.xml files. Should we: 1. Have no version 2. Use the latest version in the Maven repo 3. Use

Re: What's the best way to specify versions for Maven Plugins?

2007-01-22 Thread Barrie Treloar
On 1/23/07, Carlos Sanchez [EMAIL PROTECTED] wrote: I prefer to hardcode the version because that way everybody uses the same one and you ensure reproducibility and tracing. Yes, I often have to remind people here if something unexpected occurs to run mvn -cpu -U and make sure you have the

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-15 Thread Barrie Treloar
To be specific, if my eclipse install dir is /usr/local/eclipse-32/, does the eclipse:make-artifacts goal deploy everything under /usr/local/eclipse-32/plugins/? Or does it copy just the eclipse runtime? (if so, how does it know what to take?) If it copies just the runtime, I understand why

Re: maven-assembly-plugin:2.2-SNAPSHOT cannot be downloaded

2007-01-15 Thread Barrie Treloar
If you want to avoid including snapshot repositories in your build, then you will need to follow http://docs.codehaus.org/display/MAVENUSER/Patching+Maven+Plugins. You should seriously think about avoiding including the snapshot repository in your build process as you will get ALL snapshots not

Re: Setting up a Internal Maven Repo

2007-01-15 Thread Barrie Treloar
On 1/16/07, CHHAJED, Amit, GBM [EMAIL PROTECTED] wrote: Hi, I was looking for a links which will help me in setting up a Internal Maven repository and things that I need to take care while setting the same. Any help / links / suggestions would be appreciated. For Maven 2 see

Spring, source-jars missing: who to contact about rectifying this?

2007-01-14 Thread Barrie Treloar
I've submitted http://opensource.atlassian.com/projects/spring/browse/SPR-3039 but if someone on the list knows who in the spring project to talk to about making sure that source jars are always deployed to ibiblio that would be great! Thanks

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-14 Thread Barrie Treloar
On 1/15/07, Steinar Bang [EMAIL PROTECTED] wrote: Barrie Treloar [EMAIL PROTECTED]: See http://docs.codehaus.org/display/MAVENUSER/Eclipse+Plugin For steps on how to: * Build an internal repository containing the plugins from an Eclipse installation * Add the Eclipse RCP artifacts to your

Recommended way to add config files?

2007-01-14 Thread Barrie Treloar
For files like log4j and EasyConf, I don't want them buried in the jar file as this makes it difficult to edit the files. I'd like them on disk and for the jar file to include the directory on the classpath so that the files can be located without worrying about file paths. What I have been

Re: jar plugin and assembly plugin disagree on SNAPSHOT versions

2007-01-12 Thread Barrie Treloar
On 1/13/07, Christian Goetze [EMAIL PROTECTED] wrote: John Casey wrote: you'll need the following: pluginRepositories pluginRepository idapache.snapshots/id urlhttp://people.apache.org/repo/m2-snapshot-repository/url /pluginRepository /pluginRepositories Note that this

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-09 Thread Barrie Treloar
On 1/9/07, Rahul Thakur [EMAIL PROTECTED] wrote: Could I suggest: To have this resource linked from the eclipse plugin website as well; would be nice for users looking for Maven-Eclipse integration info. Yes, but this is a first step :)

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-09 Thread Barrie Treloar
On 1/10/07, David Jackman [EMAIL PROTECTED] wrote: This looks like good information (though I haven't tried it yet). Why is it in a page that looks like it's about the Maven plugin for Eclipse (seeing how it's in the Maven Plugins section of the hierarchy) instead of the Building Eclipse RCP

HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-08 Thread Barrie Treloar
See http://docs.codehaus.org/display/MAVENUSER/Eclipse+Plugin For steps on how to: * Build an internal repository containing the plugins from an Eclipse installation * Add the Eclipse RCP artifacts to your internal repository * Create an Eclipse RCP Target And links to pde-maven-plugin if you

Surefire home page?

2007-01-07 Thread Barrie Treloar
The link for surefire on http://maven.apache.org/guides/development/guide-m2-development.html#Maven%20Code%20Style is dead - http://surefire.codehaus.org/ Anyone know where the surefire home page is? Cheers - To unsubscribe,

Re: Surefire home page?

2007-01-07 Thread Barrie Treloar
On 1/8/07, Brett Porter [EMAIL PROTECTED] wrote: http://maven.apache.org/surefire/ It's not too exciting. I can see that now ;) Looks like http://maven.apache.org/guides/development/guide-m2-development.html is ahead of itself: Surefire Surefire is a testing framework. It can run regular

Re: How can I make assembly include test jars?

2007-01-04 Thread Barrie Treloar
On 1/5/07, Christian Goetze [EMAIL PROTECTED] wrote: As subject says ... it would seem that the assembly descriptors assume you're packaging main. Am I supposed to use full paths in the assembly descriptor? Anyone have an example? This should be added to the assembly docs, do you want to file

Re: How can I make assembly include test jars?

2007-01-04 Thread Barrie Treloar
On 1/5/07, Barrie Treloar [EMAIL PROTECTED] wrote: On 1/5/07, Christian Goetze [EMAIL PROTECTED] wrote: As subject says ... it would seem that the assembly descriptors assume you're packaging main. Am I supposed to use full paths in the assembly descriptor? Anyone have an example

Re: How can I make assembly include test jars?

2007-01-04 Thread Barrie Treloar
On 1/5/07, Christian Goetze [EMAIL PROTECTED] wrote: Thanks for the tips. I ended up making it its own module and just use the standard assembly. My thinking is that if it's being distributed, it isn't really a test anymore. I hope this conforms with the idea of the test vs main source

Re: site:deploy via ssh under Windows

2007-01-03 Thread Barrie Treloar
On 1/4/07, Dmitry Beransky [EMAIL PROTECTED] wrote: Hi, I've found a few posts asking a similar question, but there were no answers as far as I could tell... I want to run a site:deploy via an external ssh and get this error message: Is there a reason for wanting an external ssh? I am on

Re: site:deploy via ssh under Windows

2007-01-03 Thread Barrie Treloar
On 1/4/07, Dmitry Beransky [EMAIL PROTECTED] wrote: I'm using scp with a password based authentication. While I have no problems running the command from my workstation, if I run the same build on the continous build box, I'm constantly being asked to accept RSA key fingerprint. Perhaps,

Re: site:deploy via ssh under Windows

2007-01-03 Thread Barrie Treloar
On 1/4/07, Dmitry Beransky [EMAIL PROTECTED] wrote: On 1/3/07, Barrie Treloar [EMAIL PROTECTED] wrote: This is because you are missing the directory ~/.ssh so that the file known_hosts can be created. d'oh! that was it. thanks! Your welcome

Re: External repositories listed in centrally deployed poms?

2007-01-02 Thread Barrie Treloar
4. In a commercial environment, it is especially important to control what assets that are accessible to developers, generally for legal reasons. and I often took them at face value until quite recently. But my latest job has driven home the need to maintain tight control on the dependency

Re: External repositories listed in centrally deployed poms?

2007-01-02 Thread Barrie Treloar
I still maintain, as I have said in other threads, you should audit not enforce lock down. Why is that? It doesn't seem a particularly valid method in my current environment, but I'm willing to listen. From my understanding, Maven currently has no capabilities to lock down these

Re: Firewall/proxy issues

2006-12-29 Thread Barrie Treloar
Like I said before, my company removed basic, so it is forcing me to do NTLM. To work around this I plan to write a proxy-proxy. I will create a java program that will negotiate NTLM with the companies proxy. Just use NTLMAPS at sourceforge. http://ntlmaps.sourceforge.net/ Then point Maven

Re: Multiple proxies issue with Maven

2006-12-28 Thread Barrie Treloar
On 12/29/06, Sharma, Rohit [EMAIL PROTECTED] wrote: We have a setup where build repository is located at two places, one on the intranet and another on internet. There are two proxies set up, one for the internet traffic and another for intranet traffic. When building with maven, we have been

Re: Test Maven Plugins

2006-12-21 Thread Barrie Treloar
On 12/22/06, gbois [EMAIL PROTECTED] wrote: Hi, What is the approach to test (debug) the code of a maven plugin? In others words, how i can write unit test for my developped maven plugin? Join the dev mailing list. I don't believe there is a standard way of doing maven plugin testing yet.

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-13 Thread Barrie Treloar
Just to ensure that the repository is available I added a profile: profile idinternal/id repositories repository idinternal.plugins/id nameMaven-Proxy Repository/name urlhttp://PROXY/maven2_repositories/internal_plugins/url releases

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-13 Thread Barrie Treloar
Neither the profile or adding the correct repository definitions to my pom are working. (I had missed out the pluginRepo definition which is now as below) /repositories repository idinternal_plugins/id nameInternal Plugin Repository/name url

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-13 Thread Barrie Treloar
Just to re-iterate, since my env has changed a bit in debugging. I have re-run surefire-report:report with no plugin installed and it correctly resolves to internal_plugins, so it looks like mvn site is resolving incorrectly. [DEBUG] Trying repository internal_plugins Downloading:

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-13 Thread Barrie Treloar
On 12/14/06, Nikunj Mehta [EMAIL PROTECTED] wrote: Now I am a little confused Try the following: run mvn help:effective-pom effective-pom.txt verify that the pom has the correct version details for the plugin e.g. plugin artifactIdmaven-surefire-report-plugin/artifactId

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-13 Thread Barrie Treloar
In the effective POM for my project, I have the following repositories - apache.snapshots - project.snapshots - central And I have the following plugin repositories - internal.plugins - apache.snapshots - central So, this does not have internal.plugins as a repository, only

Re: Maven 2 and Cruisecontrol

2006-12-12 Thread Barrie Treloar
On 12/13/06, Rollo, Dan [EMAIL PROTECTED] wrote: Yes, there is a Maven2 builder in CruiseControl. You should probably use the lastest from subversion, as it includes a bunch of fixes. The Maven2 builder was also available in the last released version (2.5). I should probably ask on the CC

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-12 Thread Barrie Treloar
On 12/13/06, Nikunj Mehta [EMAIL PROTECTED] wrote: surefire-junit. However, I need to share the patch with others in my company as well as make the patched artifacts available for use on other machines. Therefore, I decided to create an internal repository to host these patched artifacts (call

Re: (-INTERNAL) POM from internal repo is not downloaded

2006-12-12 Thread Barrie Treloar
Exact same problem. It appears that either the information on wiki is insufficient about how internal patch repositories work or Maven is working incorrectly when dealing with INTERNAL version artifacts. Another thread http://www.nabble.com/forum/ViewPost.jtp?post=7845254framed=yskin=177 had

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-12 Thread Barrie Treloar
On 12/13/06, Barrie Treloar [EMAIL PROTECTED] wrote: On 12/13/06, Nikunj Mehta [EMAIL PROTECTED] wrote: surefire-junit. However, I need to share the patch with others in my company as well as make the patched artifacts available for use on other machines. Therefore, I decided to create

Re: Patched artifacts resolved incorrectly from internal repository

2006-12-12 Thread Barrie Treloar
Next steps... Turning off internal.plugin proxying for mvn-proxy and trying again. That will have to wait for tomorrow. Bingo, I can reproduce the problem that you are seeing: [INFO] artifact org.apache.maven.plugins:maven-surefire-report-plugin: checking for updates from internal.plugins

Re: [m2] How to generate html from apt without running the whole build lifecycle?

2006-12-11 Thread Barrie Treloar
On 12/11/06, Dave Syer [EMAIL PROTECTED] wrote: baerrach wrote: For me though the site:run apt files are missing their CSS so they look ugly. Does anyone else have the same problem? Works for me. Are you using the standard css (I am because I'm lazy), or a custom skin? Bog standard, as

Re: [m2] How to generate html from apt without running the whole build lifecycle?

2006-12-10 Thread Barrie Treloar
On 12/11/06, Wim Deblauwe [EMAIL PROTECTED] wrote: Yep, that is something really worth documenting! Did not know that either... Wendy already answer my question about the exact same thing a couple weeks ago. For me though the site:run apt files are missing their CSS so they look ugly. Does

Re: maven proxy question

2006-12-08 Thread Barrie Treloar
See http://www.nabble.com/forum/ViewPost.jtp?post=7751368framed=yskin=177 You may need to change where you are point maven-proxy at. I've updated the maven-proxy to point to http://mirrors.ibiblio.org/pub/mirrors/maven2/ instead of http://www.ibiblio.org/maven2 and all appears to be well.

Re: maven proxy question

2006-12-07 Thread Barrie Treloar
On 12/8/06, Christian Goetze [EMAIL PROTECTED] wrote: I am using the maven proxy as described in http://docs.codehaus.org/display/MAVENUSER/Using+Maven+in+a+corporate+environment, but I am observing spurious build failures due to some of the actual remote sites not always responding in a timely

Re: Firewall/proxy issues

2006-12-06 Thread Barrie Treloar
With the proxy settings in settings.xml, my Windows laptop will connect and download artifacts from ibiblio all day long. The Linux build boxes, with the exact same file for settings, will not. It is odd that Linux fails where Windows works. Unfortunately Maven (even in -X mode) doesn't inform

Re: Proxy vs. Repository URLs

2006-11-27 Thread Barrie Treloar
One future feature for archiva is to manage the pom internal repositories to point to itself. In other words, if archiva is told to proxy central, and a pom gets pulled down pointing to a new repository of say ... repository idsf.net/id urlhttp://projfoo.sourceforge.net/maven2//url

Re: Maven and Eclipse

2006-11-27 Thread Barrie Treloar
On 11/28/06, Jarret R [EMAIL PROTECTED] wrote: All, I hope this question hasn't been asked a million times already, but I have been playing around with this issue for quite a while now and I think it is time to ask for some professional help. I am working on setting up an enterprise Java

Re: Proxy vs. Repository URLs

2006-11-24 Thread Barrie Treloar
On 11/25/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 11/24/06, Henri Yandell [EMAIL PROTECTED] wrote: Is this correct? If so, why do we use the 'URL Name' in one place and the 'Identifier' in another? +1 to using the identifier in both. Then why have the URL Name at all? Actually this

Re: Assembly plugin for multi module project

2006-11-23 Thread Barrie Treloar
On 11/23/06, Paolo Bacci [EMAIL PROTECTED] wrote: Nabble archives don't open here, returns timeout everytime. Does it have protection from brazilian ips? If so, a proxy would help. Barrie Treloar, could you send an example of your assembly descriptor? No Idea why Nabble is blocking you

[m2] mvn site:run throwing java.util.ConcurrentModificationException when apt file edited and saved.

2006-11-23 Thread Barrie Treloar
Thanks to Wendy, I am now running mvn site:run so I can see my changes straight away instead of waiting for mvn site to finish. When I browse to a page I get the following error: [INFO] [site:run] :INFO: Logging to STDERR via org.mortbay.log.StdErrLog [WARNING] Unable to load parent project

Re: eclipse .classpath generation in a multiproject with eclipse:eclipse

2006-11-22 Thread Barrie Treloar
On 11/23/06, AndreasWuest [EMAIL PROTECTED] wrote: i have seen the guide, but it did not really convice me. so this guide tells me that i need at least two eclipse instances. one that only servers as a cvs client, and one which is used as java ide. i can't see the disadvantage of having a

Re: Maven Plugin Information Report overwrites index.html

2006-11-22 Thread Barrie Treloar
On 11/3/06, Edelson, Justin [EMAIL PROTECTED] wrote: I'm trying to update some inhouse plugins to adhere to the Plugin Documentation Standard (http://maven.apache.org/guides/development/guide-plugin-documentation.h tml) using the docck plugin, but am having a lot of trouble getting the

Re: Problem with site plugin

2006-11-22 Thread Barrie Treloar
On 10/19/06, Manuel Ledesma [EMAIL PROTECTED] wrote: I writing sites for my custom plugins, but I have an issue with index.apt, Maven seems to ignore it, instead it always shows me the list of goals. But if I run it in a non-plugin project, everything works fine. Can someone explain how can i

Re: Checkstyle Behind A Firewall

2006-11-22 Thread Barrie Treloar
On 10/1/06, Craig McClanahan [EMAIL PROTECTED] wrote: In the Maven2 build of Shale, I'm having a problem generating the site when running behind a firewall. A bit of research indicates that the problem relates to the following configuration setting for the Checkstyle plugin. plugin

[m2] any way to build one apt file from a site?

2006-11-22 Thread Barrie Treloar
Site generation takes 1 minute. But I am working on apt documentation and want to know almost immediately if my stupid typos have been corrected. Does anyone know a faster way to cause a single page to be parsed by apt into html? I'd be happier with an Eclipse APT editor but that's asking too

Re: [m2] any way to build one apt file from a site?

2006-11-22 Thread Barrie Treloar
On 11/23/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 11/22/06, Barrie Treloar [EMAIL PROTECTED] wrote: But I am working on apt documentation and want to know almost immediately if my stupid typos have been corrected. Does anyone know a faster way to cause a single page to be parsed by apt

Re: [m2] any way to build one apt file from a site?

2006-11-22 Thread Barrie Treloar
On 11/23/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 11/22/06, Barrie Treloar [EMAIL PROTECTED] wrote: Thanks Wendy, site:run starts the site up, which isn't what I am after. I want to parse my_doc.apt into html to check whether it converts correctly. Waiting 1 minute for the entire site

Re: Assembly plugin for multi module project

2006-11-22 Thread Barrie Treloar
On 11/23/06, Timo Wolf [EMAIL PROTECTED] wrote: Hi, I have the same problem for some time and cannot find a solution. I found lots of users including me have big problems with the assembly plugin in multi module projects. Search the Nabble archives. I am happily using assembly in

Re: Using the assembly plugin to build a stand-alone application

2006-11-21 Thread Barrie Treloar
On 11/21/06, Larry Meadors [EMAIL PROTECTED] wrote: Hi, I am using maven for the first time, so I apologize if this is a retarded question, but I can't find it anywhere in the docs. I have an app that is a command line app. I want to create an assembly that has my jar, along with the other jars

Re: Classpath

2006-11-21 Thread Barrie Treloar
On 11/21/06, Deluigi Marcus [EMAIL PROTECTED] wrote: We ported an existing project from ant to maven and it seems as if the classpath of one module is different to the classpath to the parent modules which causes the junit tests to fail in the parent modules. Since the junit tests fail, it is

Re: [m2] eclipse:eclipse and checkstyle nature

2006-11-13 Thread Barrie Treloar
On 11/13/06, Rolf Strijdhorst [EMAIL PROTECTED] wrote: Ok then, in the maven eclipse plugin i found the following that could be of use? Top find Rolf. I am already using the 2.3-SNAPSHOT to try out the pde stuff. eclipse:eclipse is now able to produce the .checkstyle file correctly and

Re: How do I avoid install error when using dir assembly?

2006-11-13 Thread Barrie Treloar
On 11/14/06, Christian Goetze [EMAIL PROTECTED] wrote: I'd like to avoid getting the following error, but still have an - bin.dir file available: This is a known problem and has been fixed in the snapshot version and scheduled for 2.2. http://jira.codehaus.org/browse/MASSEMBLY-119 2.2 is

Re: [m2] eclipse:eclipse and checkstyle nature

2006-11-09 Thread Barrie Treloar
On 11/9/06, Rolf Strijdhorst [EMAIL PROTECTED] wrote: what do you need the .checkstyle file for. I mean eclipse finds it on its own. as soon as you include de builder and the nature. The .checkstyle file does not exist. It is automatically created when you go into the preference pages and turn

[m2] eclipse:eclipse and checkstyle nature

2006-11-08 Thread Barrie Treloar
I found one post here http://www.nabble.com/forum/ViewPost.jtp?post=2165470framed=yskin=177 which discussed creating the buildcommand, projectnature and additional .checkstyle file needed for configuring checkstyle in eclipse but this has yet made it back to the community. I can configure the

Re: PROPFIND + authorization failed

2006-11-07 Thread Barrie Treloar
http://freshmeat.net/projects/ntlmaps/ Run this proxy and tell your Subversion client, or Maven, to use the APS proxy. This will work for http but won't for https. ntlmaps has problems with chunked encodings. From the original problem email the scm url looks like it is http, so you should be

Re: PROPFIND + authorization failed

2006-11-07 Thread Barrie Treloar
On 11/7/06, jacob thomas [EMAIL PROTECTED] wrote: Hi group, I am also facing same kind of an issue when i try to use the http://.. protocol url, I am getting an error saying --- Provider message: The svn command

Re: Mailing is not working

2006-11-07 Thread Barrie Treloar
On 11/8/06, Morgovsky, Alexander (US - Glen Mills) [EMAIL PROTECTED] wrote: Hi. I set up my mailing like this, but I am not receiving any emails. May someone please help me with this? Thanks in advance. Have you checked the logs? They should provide you with the reasons why mail is not

Re: Using an OSGi bundle built with maven from an eclipse RCP project?

2006-10-31 Thread Barrie Treloar
Ok. Thanx! Now I'm able to add it as a required plug-in in an RCP project. But I'm still not able to list its exported package when clicking Add.. in Imported Packages in the RCP project. You might be better off asking this on the Eclipse list since it is probably not a maven specific issue,

Re: Howto create an assembly of dependencies

2006-10-01 Thread Barrie Treloar
. Is there a way to make dependencySets include the dependencies of the child modules? I have not found any option like that. And I don't want to move all dependencies from the child poms to the parent pom. Barrie Treloar wrote: Use dependencySets instead. Search the archives and you should find enough

Re: Howto create an assembly of dependencies

2006-09-30 Thread Barrie Treloar
Use dependencySets instead. Search the archives and you should find enough examples that I have posted to help solve your problems. On 9/30/06, Dennis Kempin [EMAIL PROTECTED] wrote: Hi, I want to create an assembly that contains all dependencies of all child modules, but NOT the module

Re: [M2] stripping versions from filenames in classpath or fileset returned by artifact:dependencies task

2006-09-28 Thread Barrie Treloar
On 9/29/06, Ian Springer [EMAIL PROTECTED] wrote: Based on the docs (http://maven.apache.org/ant-tasks.html), it doesn't look like the dependencies task provides a way to strip versions off filenames in the returned classpath or fileset. Does anyone know if there's a way to do this and it's just

Re: Creating a Java application

2006-09-25 Thread Barrie Treloar
On 9/26/06, Kaare Nilsen [EMAIL PROTECTED] wrote: check out the appassembler plugin in the mojo project, works great Search the nabble archives for baerrach and assembly and you will find posts I wrote on how to setup assembly to do this.

Re: Creating a Java application

2006-09-25 Thread Barrie Treloar
On 9/26/06, Xavier Toth [EMAIL PROTECTED] wrote: do you have a url for this posting? Nabble archives are here: http://www.nabble.com/Maven---Users-f178.html And type assembly baerrach in the search area and start reading. Enjoy

Re: Request for Assembly plugin use cases

2006-09-23 Thread Barrie Treloar
On 9/23/06, John Casey [EMAIL PROTECTED] wrote: However, for behavioral things (like exclusion of **/.svn/** by default), I'm coming up short on information. Default excludes, like ant has, would be nice. Like **/CVS/** (for the svn you have above). Are the changes on trunk, or available as a

Re: Assemblies created from a pom project

2006-09-22 Thread Barrie Treloar
On 9/22/06, Ståle Undheim [EMAIL PROTECTED] wrote: Is there any way I can make the parent project inherit all the child projects dependencies and use dependencySet to group together dependencies? Search the archives for my posts. I go into detail about setting up assemblies. Those posts should

Re: intelligently building snapshots with continuum

2006-09-21 Thread Barrie Treloar
It's planned for 1.1 Is there an ETA for 1.1? Or better yet, is someone already working on it and if I get some time can help out?

Re: Who is the maintainer of the fop:fop project found on repo1.maven.org?

2006-09-20 Thread Barrie Treloar
Markus writes: That's why I am asking for the name of the maintainer, so that I can ask him to do that... As Carlos said in another email: The repo is mantained in a no guarantees, free time basis, so your request to get this solved asap because my client needs it doesn't fit here. i.e. No

Re: Who is the maintainer of the fop:fop project found on repo1.maven.org?

2006-09-20 Thread Barrie Treloar
On 9/20/06, Markus KARG [EMAIL PROTECTED] wrote: i.e. No on maintains the FOP available in the repo. It is there as a convenience only. I might also suggest you adjust your attitude. Sorry for beeing rude and thank you for telling me. It wasn't my intention. But see, I just want to know

Re: intelligently building snapshots with continuum

2006-09-20 Thread Barrie Treloar
On 9/21/06, Leonard Gestrin [EMAIL PROTECTED] wrote: The goal is to make sure that snapshots are updated properly recursively when change happens to a certain snapshot. And all pieces of the application are using same versions of snapshots. As someone already posted Continuum only rebuilds is

Re: [M2] Managing Repositories

2006-09-17 Thread Barrie Treloar
On 9/17/06, Andreas Guther [EMAIL PROTECTED] wrote: Hi, I am struggling with the question on how to maintain a controlled internal repository with Maven 2. We want to have full control over the downloaded dependencies and configured Maven to use as central repository our internal repository

Re: [M2] Managing Repositories

2006-09-17 Thread Barrie Treloar
On 9/18/06, Andreas Guther [EMAIL PROTECTED] wrote: And then that we sometimes end up with two versions of the same dependency. Application A needs components C1 and C2. C1 defines dependency on D version 1.1 and C2 defines dependency on D version 1.0. What I see is that we find both in our

Re: Company-wide Maven repo

2006-09-14 Thread Barrie Treloar
On 9/15/06, Aleksei Valikov [EMAIL PROTECTED] wrote: Hi folks, Could anyone recommend software for implementing/installing a company-wide Maven repository? maven-proxy? proximity? Pros and contras? I'd be grateful for your opinions. As people have already said your choices at this stage are

Re: Complex Assembly structure

2006-09-13 Thread Barrie Treloar
and e.jar. I tried to create a master script in A with modules for b and e and then master scripts in B and E with modules of c,d and f,g,h, respectively. However, C, D, and F,G,H don't have targets, so I wasn't sure how to proceed at that level. Thanks for reading through this. You should

Re: Executable binary assembly in multi module project

2006-09-11 Thread Barrie Treloar
Help. Any suggestions on how to achieve this ? Yes, search the archives. I've posted on this numerous times. Admittedly it is on the second page of results for assembly and binary. See http://www.nabble.com/forum/ViewPost.jtp?post=5936062framed=y

Re: another public plugin not working properly

2006-09-11 Thread Barrie Treloar
On 9/12/06, Brill Pappin [EMAIL PROTECTED] wrote: Yes I understand that... in fact I do have http://people.apache.org/maven-snapshot-repository listed (afaik is the apache snapshot repo). seems I need the pluginRepositories section as well as the repositories section in the pom or plugins don't

Re: How to set: No Scheduled build | Only triggered build

2006-09-11 Thread Barrie Treloar
I don't think this feature is available currently. On 9/12/06, Anoop kumar V [EMAIL PROTECTED] wrote: Hi - Can somebody please help me a bit? Thanks, Anoop On 9/11/06, Anoop kumar V [EMAIL PROTECTED] wrote: Actually - the other way I have tried (not sure if it works yet) is to just disable

Re: Problem with Assembly plugin, MANIFEST and snapshots

2006-09-07 Thread Barrie Treloar
On 9/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi All, I have a problem but I don't know if the cause is the assembly plugin, the jar plugin that creates the MANIFEST or the mechanism that manage snapshot versions. I explain : 1) I have 2 projects : prjA dependding on prjB = in the

<    3   4   5   6   7   8   9   10   >