Re: Notification on deployment of a new version of artifact

2008-01-23 Thread Andrew Williams
Oops, this is a little late, catching up on my email. Figured you might like to know that I saw this feature in the HeadsUp! (http://headsupdevelopment.com) notification system, not sure that there are any free betas yet though... Andy On 5 Jan 2008, at 16:47, Guillaume Lederrey wrote:

Re: outputDirectory for hibernate3-maven-plugin not working properly

2008-01-23 Thread Andrew Williams
Fear not Ikumar - I made the same mistake, the docs are very misleading (in fact, multiple formats are used in one page)... Andy On 21 Jan 2008, at 15:22, Johann Reyes wrote: Hello Ikumar Your pom is not well configured. The correct syntax would be: plugin

Re: Dependencies

2007-12-10 Thread Andrew Williams
scopesystem/scope On 10 Dec 2007, at 12:52, Luis Roberto P. Paula wrote: Hi All, Is there any way to set dependencies to a local classpath instead of a package in a repository? Thanks, Luis - To unsubscribe, e-mail:

Re: Releasing without running tests

2007-09-18 Thread Andrew Williams
I seem to remember doing this myself: mvn release:prepare -Dmaven.test.skip=true -Darguments=- Dmaven.test.skip=true hope that helps, Andy On 17 Sep 2007, at 04:40, Steve Mactaggart wrote: We have a module that requires it to be released, while it does compile fine and works correctly

Re: How to specify remote repository on mvn command line

2007-09-13 Thread Andrew Williams
specify the repositories that you might want to use in a profile within settings.xml - then just activate it using the -PprofileId option to maven Andy On 7 Sep 2007, at 17:34, Farrukh Najmi wrote: Is there a way to specify to mvn command line to pickup additional remote repositories?

Re: Pronuciation

2007-09-13 Thread Andrew Williams
3 our of 4 of those examples don't count - only maverick has vowel- consonant-vowel :) On 5 Sep 2007, at 18:07, Lee Meador wrote: Except in mattress or matrimony or mad or maverick where the 'a' is pronounced as in dad. English is funny because we stole words from almost every other

Re: Patch plugin and filter

2007-09-13 Thread Andrew Williams
use the resources configuration block in your .pom file - you can add extra directories and filter them. Andy On 23 Aug 2007, at 17:02, JC Walmetz wrote: It would be great to be able to filter patches before applying patch with the patch plugin (plugin such as resources manages this

Re: Maven2 properties file as in Ant

2007-09-12 Thread Andrew Williams
Perhaps filtering [1] will help you out? Andy [1] http://maven.apache.org/guides/getting-started/ index.html#How_do_I_filter_resource_files On 7 Sep 2007, at 21:38, Juan Ignacio Garzón wrote: Hi! I have read the Settings Reverence [1], and in the section Properties there is a paragraph

Re: Retrieving version of the pom itself - not the child projects pom

2007-09-05 Thread Andrew Williams
Not entirely certain if this will help or not, but could you define a property and reference that instead? i.e. property myversion1.0-SNAPSHOT/myversion /property then using ${myversion} will always return you that version Andy On 4 Sep 2007, at 08:42, PeterNilsson wrote: Hi, Sorry

Re: how to enforce synchronization between source control and mvn deploy?

2007-08-20 Thread Andrew Williams
I don't have an answer (not an eclipse user), but I do have a note on 2): Don't force a deploy beforehand - the SCM might fail - you want to deploy after (assuming no conflicts). Andy On 20 Aug 2007, at 12:08, aldana wrote: hi, because development team is working with eclipse i want to

Re: Generate Version class

2007-08-20 Thread Andrew Williams
/configuration /execution /executions /plugin [...] -Tim bakito schrieb: How is this done? Can you please give an example. I can not get it working using filtering java files like filtering resources. bakito Andrew Williams-5 wrote: You could configure the filtering to filter your java

Re: Generate Version class

2007-08-13 Thread Andrew Williams
You could configure the filtering to filter your java code as well as standard resources, though I don't know if that is what you want. Andy On 22 Jul 2007, at 22:56, Francois Fernandes wrote: Hi list, for some time now I've been looking for a easy way to generate a simple class

Re: embedded jetty in maven test phase classpath problem.

2007-08-13 Thread Andrew Williams
On 1 Aug 2006, at 17:14, Meghan Pike wrote: [snip] Does anybody know if this is the case and how I can fix it? I though maybe I could compile the jsp's to _jsp.java files in the pre-test phase, but I wasn't sure about how to go about this. You could try using the maven-jspc-plugin

Re: [m2] WHere can I find a list of all the standard maven properties?

2007-08-10 Thread Andrew Williams
If you want to reference resources from child builds you should make a shared jar to include these files and reference them through the classpath in child projects. Andy On 28 Jul 2007, at 23:25, Mick Knutson wrote: I am actually looking for something like ${project.home} as I have

Re: Site-related question ... change default index.html

2007-07-10 Thread Andrew Williams
You could just use xdoc directly without the velocity pre-processing... (i.e. src/site/xdoc/index.xml). Andy On 8 Jul 2007, at 15:35, Giovanni Azua wrote: Hi all, I was trying to get the same effect as maven 2 website where there is a portlet on the right side including some adds and news

Re: New maven user: The plugin 'org.apache.maven.plugins:maven-archetype-plugin' does not exist or no valid version could be found

2007-07-10 Thread Andrew Williams
And make sure you don't have any bad mirrors configured in your settings.xml :) Andy On 10 Jul 2007, at 02:29, Maria Odea Ching wrote: Hi Robert, Try cleaning out your repo by deleting all versions of the maven- archetype-plugin (including metadata and pom files). Then execute

Re: Cannot download parent pom from specified remote repository

2007-07-10 Thread Andrew Williams
You may have indeed identified a problem there, but I do not see information about which maven version you are using (please forgive me if I missed it). Are you on the latest (2.0.7)? Andy On 9 Jul 2007, at 14:55, Daniele Dellafiore wrote: I know, there are a lot of dependencies that are

Re: problem in release:prepare

2007-07-04 Thread Andrew Williams
add a trailing slash perhaps? On 3 Jul 2007, at 12:36, javijava wrote: Thanks to reply Andy, I quit all the references to repositorys at the POm file except the SCM, I include /trunk in the scm:svn:http:// connection string, but i have the same error!! :( Maven try to tag release

Re: how to configure Default Repository Layout for local repository

2007-07-04 Thread Andrew Williams
Using install:install-file or deploy:deploy-file will enable you to install your legacy named jars into the repository format by passing metadata on the command line. Though jars may not have the version in their name they still have metadata or a release number associated with them where

Re: [m2] Deploy on Multiproject

2007-07-03 Thread Andrew Williams
The deploy goals work in the reactor to deploy all artifacts in a multi module project. Unless you have some specific requirements this should be fine. Andy On 2 Jul 2007, at 13:17, Jens Hohl wrote: Hello, i have an Multi project with lots of artefacts. What's the best solution

Re: problem in release:prepare

2007-07-03 Thread Andrew Williams
Assuming that you intend to work from trunk (which you do ;) ) then you should include /trunk on the end of your scm connection string. There will be no need for further configuration with tagbase etc, as when you do things in the standard manner maven can figure the rest out for you.

Re: deploy question

2007-07-03 Thread Andrew Williams
Hey Steven, Don't get confused between a local repository and an internal (or corporate etc) repository. The local repository is used just for yourself and maven creates and manages it automatically (in ~/.m2/repository by default). An internal repository is a place in your group where you

Re: [m2][maven-surefire-plugin] using ClassLoader.getSystemResourceAsStream

2007-07-01 Thread Andrew Williams
Perhaps posting the actual code will help. When it comes to classloading many loaders such as eclipse are very liberal whereas the surefire loader is more strict to the java spec. Andy On 27 Jun 2007, at 14:05, Erik Ruisma wrote: Hello, I've been trying out several options on the

Re: mvn install

2007-07-01 Thread Andrew Williams
I would look at the cargo plugin. Andy On 29 Jun 2007, at 18:56, crinu wrote: I need some help... when we change some some static files like jsp, properties.. etc.. is there any way that i can just copy them to target server deployment directly.. The reason why i need is ,, when i

Re: DAV deployment seems to not perform as with 2.0.6

2007-06-30 Thread Andrew Williams
I have found this to be fixed with 2.0.7 - give it a shot. Andy On 25 Apr 2007, at 21:54, Mykel Alvis wrote: Once upon a time, in the distant past (Maven 2.0.5 and before), the instructions found on the Maven User Wiki (at http://docs.codehaus.org/display/MAVENUSER/Deploying+3rd+Party+Jars

Re: Maven and Trac ?

2007-06-20 Thread Andrew Williams
It is running live here: http://dev.rectang.com/projects/javautil/maven/ I should really link that from the maventrac project page I suppose. Andy On 17 Jun 2007, at 11:23, Manuel J. Recena Soto wrote: Hi Kaare: El 16/06/2007, a las 18:30, Kaare Nilsen escribió: On Jun 16, 2007, at 5:14

Re: How to set variables like ${basedir}

2007-06-20 Thread Andrew Williams
http://sonatype.com/book/properties.html Andy On 20 Jun 2007, at 08:08, capira wrote: Hi! I have read some documents and books about Maven and I am not able to find a list which describes variables like ${basedir}. Regards, Raul -- View this message in context:

Re: Enforcing the use of a profile?

2007-06-20 Thread Andrew Williams
There is the activation section in the profile that can contain activeByDefaulttrue/activeByDefault Andy On 15 Jun 2007, at 17:44, Nathan Maves wrote: Is there any way within maven to force that a profile is selected? I would have to have to write shell/bat files to do this work for me.

Re: How can I set project.version externally?

2007-06-11 Thread Andrew Williams
There is no need to do this, but then again if you use the provided tooling there should be little reason. The release plugin will rewrite all of these version numbers for you when you roll a release. Andy On 7 Jun 2007, at 10:08, Jux wrote: That is excactly what I would like to know

Re: how to disable dowloading beta versions of plugins

2007-06-11 Thread Andrew Williams
FYI this is (or something very similar) on the roadmap for 2.1 - not allowing any plugin to run with missing version information. Andy On 8 Jun 2007, at 12:13, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: HI, Does maven also have somekind of a switch that forces the use of specified

Re: Site Distribution URL

2007-06-04 Thread Andrew Williams
Remove the ${project.artifactId} from your url configuration. This is automatically appended when the site is being deployed. The hierarchy is also maintained, so you cannot get artifactId conflicts. Andy On 31 May 2007, at 18:09, Ben Tatham wrote: I am having difficulty understanding how

Re: mvn site error? 'VM_global_library.vm' ???

2007-05-27 Thread Andrew Williams
No, it should still be fine - are you getting nothing at all, or is it just index.html that is missing? Have you tried using mvn site:run to see if anything is being rendered? Andy On 25 May 2007, at 23:09, Baz wrote: So i also see the following errors during nunit, does it stop me using

Re: mvn site error? 'VM_global_library.vm' ???

2007-05-25 Thread Andrew Williams
It is safe to ignore this, I believe. A long standing issue is the need to tidy up what velocity reports as errors or indeed what is output at all. Andy On 25 May 2007, at 01:11, Baz wrote: Why am i seeing the following error? How can i resolve it? [INFO] Velocimacro : initialization

Re: Portlet Archetype doesn't work?

2007-05-25 Thread Andrew Williams
I believe it is under a vote right now, so the next release should be available in the next few days. Andy On 25 May 2007, at 13:10, Clifton wrote: I posted to the JIRA and now the issue seems to be closed. However I don't see the updated version anywhere. Clifton wrote: I'm trying

Re: trouble building a multi-module project with cross-module dependencies

2007-05-24 Thread Andrew Williams
my guess is that your mod1/pom.xml is missing the modules modulemod1A/module modulemod1B/module /modules Andy On 23 May 2007, at 20:05, Tim Foster wrote: I'm having trouble building a multi-module project structured as below: top |-- pom.xml |-- mod1 ||-- pom.xml ||--

Re: Problem with classpath order

2007-05-24 Thread Andrew Williams
I think Sun would not really like this :) You can cause very serious security violations in this manner. Can you not subclass File (com.my.File) and use that everywhere instead? It can extend File so you have the same sort of behaviour... Andy On 23 May 2007, at 14:53, redhatvswin wrote:

Re: test failures

2007-05-12 Thread Andrew Williams
they are logged to a file, do mvn test -Dsurefire.useFile=false to log them to stdout - no need for -e or -X Andy On 12 May 2007, at 00:30, [EMAIL PROTECTED] wrote: I am getting a test failure message from maven: [INFO] Trace org.apache.maven.BuildFailureException: There are test

Re: String substitution in resource filtering

2007-05-12 Thread Andrew Williams
Is there any reason you cannot replace the strings with, say ${hibernate.dtdname} and ${hibernate.dtdurl} and replace both of those using filters? That is, I think, the correct way... On 12 May 2007, at 07:12, Farrukh S. Najmi wrote: I need to do resource filtering that simply needs to

Re: [m2] Color logging?

2007-05-12 Thread Andrew Williams
Sorry it took so long, this should get you sorted. http://handyande.co.uk/Documentation/Maven/Colour_Logging/ Andy On 8 Apr 2007, at 10:47, mraible wrote: Andy, Do you have an update on this? Thanks, Matt Andrew Williams-5 wrote: I will try to put instructions on a website somewhere

Re: [m2] Dependency Ordering Headache

2007-05-01 Thread Andrew Williams
I may be speaking out of turn here, but I think that maven does not have a lack of order, it simply does not allow you, the user, to control the order. Thus builds are reproducable reliably, the order does not change from one build to another. This, however, is academic. If your classpath

Re: [m2] Dependency Ordering Headache

2007-05-01 Thread Andrew Williams
My apologies, I must just have been lucky with the orders being static on my projects. Andy On 1 May 2007, at 13:50, Wendy Smoak wrote: On 5/1/07, Andrew Williams [EMAIL PROTECTED] wrote: I may be speaking out of turn here, but I think that maven does not have a lack of order, it simply

Re: How can I stop a build if I don't see the Java processes for it?

2007-04-18 Thread Andrew Williams
hitting the build all button might clear this. Andy On 18 Apr 2007, at 12:52, Morgovsky, Alexander ((US - Glen Mills)) wrote: Please help, we are at the point of uninstalling Continuum and again installing everything. I sincerely hope you can provide a solution for this, as these

Re: For you Enterprise Maven Users!

2007-04-18 Thread Andrew Williams
Of course mine was the first, as I woke up before the others ;) http://handyande.co.uk/Coding_News/_articles/26.html Andy On 18 Apr 2007, at 15:38, Jason van Zyl wrote: http://blogs.maven.org/jvanzyl/2007/04/18/1176905394766.html

Re: [m2] Color logging?

2007-04-08 Thread Andrew Williams
Blimey - I totally forgot! I shall look at it this week sorry. Andy On 8 Apr 2007, at 18:47, mraible wrote: Andy, Do you have an update on this? Thanks, Matt Andrew Williams-5 wrote: I will try to put instructions on a website somewhere this week. Andy On 14 Mar 2007, at 16:15

Re: Using maven-war-plug-in with clover

2007-04-04 Thread Andrew Williams
The Maven Clover Plugin[1] has some good documentation Andy [1] http://maven.apache.org/plugins/maven-clover-plugin/ On 2 Apr 2007, at 06:30, raju wrote: Hi, I am building a war with Maven 2 and deploying it to weblogic.The war contains junit tests for in-container testing and invoking

Re: Maven-assembly-plugin to build simple jar

2007-04-04 Thread Andrew Williams
Are you providing the whole project as a jar, or is this a subset of the project with, say, shared code? Have you considered making the jarred part a separate module on which the war module can depend? Andy On 2 Apr 2007, at 05:51, raju wrote: Hi martijn, I have my project pom.xml

Re: How to build multiple webapps that share resources

2007-04-04 Thread Andrew Williams
make another module alongside webapp1 and webapp2 called, for example, webapp-resources and then depend on this jar module from both webapps. If you require to filter the resources then you need a more complicated solution, however :( Andy On 30 Mar 2007, at 14:29, Doug Tanner wrote: I am

Re: assembly with docs and scripts

2007-04-04 Thread Andrew Williams
If you are providing your own scripts and just want them packaged up then the assemblyplugin is your friend. You might need to write a descriptor to tell it about scripts and docs and where their final location should be, but it gives you the freedom to decide where they go in the source

Re: Unable to run it

2007-04-04 Thread Andrew Williams
That is because the mvn binary was on the PATH, but the M2_HOME is used for constructing parameters to the java command, thus mvn worked, but invoking java failed. Andy On 3 Apr 2007, at 10:20, Sagar Yerunkar wrote: Hey that was the problem. I had an extra \ in M2_HOME. I removed it and

Re: AW: AW: Dependency version ignored

2007-03-28 Thread Andrew Williams
the dependencies that I DO declare for the project? After all, the dependency plugin figures out the correct version, why doesn't the compiler plugin do so? Thanks in advance. Cheers, Severin -Ursprüngliche Nachricht- Von: Andrew Williams [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 27

Re: AW: Dependency version ignored

2007-03-27 Thread Andrew Williams
use an exclusion on the xmlbeans dependency to stop junit from being used? in 2.0.6 dependencyManagement should sort this. Andy On 27 Mar 2007, at 08:07, Ecker Severin wrote: I'm trying once again... I'm not sure whether I'm not using dependencies correctly or this is a bug, but the

Re: Using Maven without an intyernet connection

2007-03-19 Thread Andrew Williams
If you can run maven on an internet connected computer first to download all the dependencies then you could just copy the ~/.m2/ repository/ directory to the computer without the internet and run maven in offline mode (mvn -o) Andy On 19 Mar 2007, at 07:17, Ivan Biddles wrote: Hi, I am

Re: Simple Dependencies List

2007-03-16 Thread Andrew Williams
The belp plugin currently under development has a dependencies goal, so you could build that from trunk if you want. Andy On 15 Mar 2007, at 15:51, Dees, Ian ((GE Healthcare)) wrote: Hi List, Is there a maven command/plugin/etc. that I could use to generate a simple text file that lists

Re: [m2] Color logging?

2007-03-14 Thread Andrew Williams
I have some colour logging that works, but it is not a core part of maven yet. It was suggested that we need to work on fixing up the logging output before we jazz it up. The impl I have supports both ANSI and HTML right now. Andy On 13 Mar 2007, at 15:26, mraible wrote: Bump... has the

Re: [m2] Color logging?

2007-03-14 Thread Andrew Williams
instead of digging through text files. Most folks that use Maven are coming from Ant, where they're used to this behavior. In the meantime, would you mind sending me your impl so I can try it out? Thanks, Matt Andrew Williams-5 wrote: I have some colour logging that works

Re: cron job

2007-03-13 Thread Andrew Williams
that's 12:30pm, though it may be what he meant ;) Andy On 13 Mar 2007, at 07:20, Emmanuel Venisse wrote: 0 0 0 * * ? 0 30 12 * * ? http://www.opensymphony.com/quartz/api/org/quartz/CronTrigger.html AyoContinuum a écrit : What are the cron syntax's for to run a build at midnight every day

Re: Felix build fails using Maven 2.0.5

2007-03-11 Thread Andrew Williams
, maven-bundle-plugin is used later in the build. maven-bundle- plugin is the third bundle to be built in the multi-module build and the first module to use it is javax.servlet which is the fourth module in the build. Tim Andrew Williams wrote: Sorry, what I meant is that I assume it is using

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Andrew Williams
Am I right in guessing that your parent pom refers to the felix maven- bundle-plugin? Andy On 8 Mar 2007, at 06:30, Tim Moloney wrote: Any of the following commands fail with the error message below using Maven 2.0.5 and an empty local repository. Maven 2.0.4 works fine. ant ant install

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Andrew Williams
- plugin. This is why I'm confused with the error message. maven-bundle- plugin doesn't exist since it hasn't been built yet by this execution of maven. Tim Andrew Williams wrote: Am I right in guessing that your parent pom refers to the felix maven-bundle-plugin? Andy On 8 Mar 2007

Re: Internal error during launching.

2007-03-05 Thread Andrew Williams
I think you will need to provide more info. Run maven with the -X flag to get more output to the console. Andy On 5 Mar 2007, at 06:51, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, Thanks to all for responding to the previous posts. Hope this one will also be responded

Re: Where is continuum_cli.py?

2007-03-02 Thread Andrew Williams
Sorry, I have been working on the python code, but I never got to the building, only the reading of information. Also, this was before project grouping came into effect, so things may have changed. I guess this needs more work next time I get a chance. A On 2 Mar 2007, at 01:15, David

Re: [m2] Deploying to File System

2007-03-01 Thread Andrew Williams
Are you sure about that? I think he was right. The protocol for the file access is file:// just as per http://. The prefix of a unix path is '/' (i.e. /usr/bin/) whereas windows is the drive 'c:' (i.e. c:/Windows/) etc. Thus a unix file URL is file:///path/to/file whereas on windows it is

Re: Deploying site under continuum jetty

2007-02-20 Thread Andrew Williams
I think you want to be looking at Maven Enterprise as Continuum does not support this. Enterprise provides you with continuum 1.1-SNAPSHOT and a webdav server where you can deploy your maven generated sites. Andy Victor Kirk wrote: Hiya, I was wondering if anyone could tell me if it is

Re: How can i connect to a password protected repository?

2007-02-05 Thread Andrew Williams
In settings.xml - something like servers server idinternal/id username.../username password.../password /server /servers Andy Maruf Aytekin wrote: I would like to set a password protected repository. In order to download from repository you need to enter usernae and password to

Re: How can i connect to a password protected repository?

2007-02-05 Thread Andrew Williams
. Is there a different way to achieve this? Thanks Maruf Andrew Williams wrote: In settings.xml - something like servers server idinternal/id username.../username password.../password /server /servers Andy Maruf Aytekin wrote: I would like to set a password protected repository. In order

Re: Dependency

2007-01-30 Thread Andrew Williams
Put them in a parent folder with a pom of type pom. List these modules in there and then you can mvn clean install from the parent and it will build them all in order. Andy vojjala wrote: Folks, I have 3 folders called A, B and C , each folder has pom.xml. B is depended on A, C is depended

Re: Test source dependencies

2007-01-30 Thread Andrew Williams
Make a new project (T) and put all of the test code there in compile scope (src/main/java) then project A and B can both depend on T in scope test. Andy Leo Freitas wrote: How to fix dependencies among testing code? That is, if I have a project B test code that depends on project A test

Re: Archiva broken due to bug in plexus - where to post issue?

2007-01-22 Thread Andrew Williams
Don't worry - I fixed it already ;) On 22 Jan 2007, at 10:05, Dirk Jablonski wrote: Hi All! Once again I encountered an error when trying to start Archiva. This time, it builds perfectly (with -U option to be up-to-date), but does not start with mvn jetty:run, because there is a verify

Re: [XML-RPC] using the api

2007-01-12 Thread Andrew Williams
Though I cannot remember just now I know that some of the getSomethings calls return less detailed info than the individual getSomething calls. for example getBuilds will not return all the dumped data but getBuild will. At least something along those lines iirc. A On 12 Jan 2007, at

Re: mvn and JUnit 4.1

2006-12-07 Thread Andrew Williams
Currently maven does not support Junit 4 in the surefire plugin (default test framework) there is a JIRA for it so you can go and vote for it :) Andy Davis Ford wrote: Hi, we use JUnit 4.1 in eclipse, but when we run the tests from the cmd line with mvn, it seems to fail and not use JUnit 4.1

Re: Test failure

2006-12-07 Thread Andrew Williams
when looking for error stack traces do not execute mvn -e test go for somthing like: mvn -Dsurefire.useFile=false test Andy On 7 Dec 2006, at 18:40, Allan Valeriano wrote: Hi all, I'm having some problems running mvn test. I'm receiving failure at one of my tests, but when I run it with

Re: Python xmlrpc scripts

2006-12-06 Thread Andrew Williams
Indeed, they should work - but they are not complete, I think things like the firing of builds or addition or projects is likely broken. I fixed them up enough to get continutrac off the ground (http://dev.rectang.com/projects/continutrac) but have not had time to finish it off. A Emmanuel

Re: [m2] exclusive profiles

2006-11-30 Thread Andrew Williams
I would do it using a property (say alt) and the following activation configuration: profiles profile idA/id activation property name!alt/name /property /activation ... /profile profile idB/id activation property namealt/name /property

Re: Use older/specific version of snapshot?

2006-11-28 Thread Andrew Williams
if it is in the repo now then just delete your local copy from ~/.m2/repository and rebuild your project :) Andy spamsucks wrote: Sorry for the newbie question, but I deployed a new 1.0-SHAPSHOT of an artifact that broke a project that depends on this artifact. I would like this broken

Re: QDox, Maven Plugin and JDK 1.5

2006-11-23 Thread Andrew Williams
http://repo1.maven.org/maven2/qdox/qdox/1.6.1/ On 22 Nov 2006, at 12:19, Emmanuel Hugonnet wrote: zze- HUGONNET E ext RD-BIZZ a écrit : zze- HUGONNET E ext RD-BIZZ a écrit : Andrew Williams a écrit : I recommend 1.6.1, as 1.6 depends on Java5 by mistake Emmanuel Hugonnet wrote: zze

Re: generating site from parent

2006-11-23 Thread Andrew Williams
Have you tried staging a site? Sites generated in mvn site (not staged or deployed) will reside inside each module's target area so the links will be broken. A On 22 Nov 2006, at 02:03, Christian Goetze wrote: Wayne Fay wrote: This is discussed a couple times every week. Please search

Re: QDox, Maven Plugin and JDK 1.5

2006-11-17 Thread Andrew Williams
I recommend 1.6.1, as 1.6 depends on Java5 by mistake Emmanuel Hugonnet wrote: zze- HUGONNET E ext RD-BIZZ a écrit : Hi, Is there some way to specify where is the MOJO so that Qdox doesn't parse my JDK1.5 classes ? Thanks Emmanuel

Re: Dependency cycle?

2006-11-10 Thread Andrew Williams
If two projects depend on each other which gets built first? In this situation either one must be optional or they must be in the same artifact. Andy franz see wrote: Good day to you Sha Jiang, Maven can not handle cyclic dependencies. It will give you a cyclic dependency error Cheers,

Re: Dependency cycle?

2006-11-10 Thread Andrew Williams
It is a rhetorical question - meaning that it is impossible to build such a system, thus Maven does not support it :) A franz see wrote: Good day to you, Andy, I'm not sure if any are build at all, that's because your whole build will fail. Cheers, Franz Andrew Williams-5 wrote

Re: creating different packages for different customers

2006-10-12 Thread Andrew Williams
would do deploy for product-web-customer and tell maven to add/replace some JSP from different customer project ? thanks Marek Andrew Williams-5 wrote: If you are seperating your logic from your view correctly (i.e. product-api, product-core and product-web modules) then you can have

Re: creating different packages for different customers

2006-10-09 Thread Andrew Williams
If you are seperating your logic from your view correctly (i.e. product-api, product-core and product-web modules) then you can have a different product-web module for each customer and just ship the correct one :) Andrew Marek Chowaniok wrote: No one has request for this feature? Please

Re: XML-RPC scripts to kick off the continuum builds with subversion

2006-08-23 Thread Andrew Williams
apologies - wrong list for continuum :( Andrew Williams wrote: (Cross-posting so we can move this to the continuum users list) The python scripts are getting worked on. I am currently waiting for 2 or 3 patches to be committed (check JIRA) Once they are in I will tidy it up further. I

Re: XML-RPC scripts to kick off the continuum builds with subversion

2006-08-23 Thread Andrew Williams
(Cross-posting so we can move this to the continuum users list) The python scripts are getting worked on. I am currently waiting for 2 or 3 patches to be committed (check JIRA) Once they are in I will tidy it up further. I intend to fix it up completely to the java api, but it is difficult

Re: XML-RPC scripts to kick off the continuum builds with subversion

2006-08-23 Thread Andrew Williams
apologies - wrong list for continuum :( Andrew Williams wrote: (Cross-posting so we can move this to the continuum users list) The python scripts are getting worked on. I am currently waiting for 2 or 3 patches to be committed (check JIRA) Once they are in I will tidy it up further. I

Re: maven site into Trac?

2006-08-21 Thread Andrew Williams
Your MavenTrac setup seems fine. The extra /trac in the URL must be caused by either your trac setup or your maven setup. The reason I say this is that the URLs are all relative, so it is rather difficult to screw it up - especially as MavenTrac does not rewrite links. Are the module's sites

Re: maven site into Trac?

2006-08-21 Thread Andrew Williams
Valerio Schiavoni wrote: On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote: Are the module's sites deployed as children of the parent? from the parent project, i do a mvn site-deploy, so that the parent and and the modules projects are deployed all togheter. cool - that is correct

Re: maven site into Trac?

2006-08-21 Thread Andrew Williams
Valerio Schiavoni wrote: On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote: This should not be needed (and does not make sense) If the children are correctly deployed they should sit inside the parent project (thus only one root). maybe this is the issue comes from. each submodule defines

Re: maven site into Trac?

2006-08-21 Thread Andrew Williams
Glad to see that fixing your pom.xml fixed everything (http://dev.rectang.com/projects/maventrac/ticket/1) Andy Valerio Schiavoni wrote: On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote: This should not be needed (and does not make sense) If the children are correctly deployed

Re: Specifying a SVN-URL to a pom rather than upload local pom?

2006-08-16 Thread Andrew Williams
As your https certificate is not quite perfect (jsolutions.se is not the host it is issued to, localhost.ag9130 is) plexus.formica is failing. I patched this in formica a couple of months ago and I believe that it will be included with continuum 1.1. Andy Markus Wahl wrote: Hi I have

Re: XML-RPC client - getting build state by BuildId/BuildDefinition

2006-08-02 Thread Andrew Williams
what version of continuum are you using? XML-RPC has more in SVN that in 1.0.3 I have not yet updated the ProjectsReader to reflect, however. Andy On Wed, 2006-08-02 at 14:05 -0500, [EMAIL PROTECTED] wrote: I tried playing with the java XML-RPC client for continuum, and had a couple

Re: maven site into Trac?

2006-08-01 Thread Andrew Williams
Andrew, Do you feel you know trac/maven integration enough so that you could add support for it to the changes plugin so that we can use trac instead of jira as issue tracker? Srgjan Andrew Williams wrote: OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven sites

Re: maven site into Trac?

2006-07-31 Thread Andrew Williams
/) p.p.s Sorry for the adverts! On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote: The clamoring masses have it.. please release it On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote: YES! :) Srgjan Andrew Williams wrote: :) I am the dev behind dev.rectang.com and can

Re: maven site into Trac?

2006-07-26 Thread Andrew Williams
:) I am the dev behind dev.rectang.com and can tell you it is not manually done :) I have a trac plugin that is almost ready for a release that does it for me. step 1) install plugin, tell it where the site is generated to (on the filesystem) step 2) set your site to use the maven-trac-skin

Re: [m2] Developers LDAP plugin anyone?

2006-07-26 Thread Andrew Williams
yeah baby :) sounds great On Wed, 2006-07-26 at 15:34 -0400, Edelson, Justin wrote: I've put together a plugin that enables me to specify only the id for each developer in the pom and populate the remainder of the developer objects with attributes from LDAP. The name, email, etc. properties

Re: Do i have to live with same group name for different project

2006-07-24 Thread Andrew Williams
your poms have a groupId? (assuming maven2 project) Andy On Mon, 2006-07-24 at 13:12 -0500, [EMAIL PROTECTED] wrote: Hi I couldn't figure out what am i doing wrong can any one help pls? i setup my continuum with lot of different projects, but the problem is continuum is automatically

Re: Continuum with SVN and Apache/SSL

2006-07-24 Thread Andrew Williams
the project add page currently requires that URLs be publicly visible (no passwords etc). I would temporarily disable the security, upload it, then lock it down again. For the scm updates later you can use the maven servers setup to specify credentials Andy On Mon, 2006-07-24 at 16:13 +0200,

Re: Continuum with SVN and Apache/SSL

2006-07-24 Thread Andrew Williams
to work around, see http://jira.codehaus.org/browse/CONTINUUM-747 On 7/24/06, Andrew Williams [EMAIL PROTECTED] wrote: the project add page currently requires that URLs be publicly visible (no passwords etc). I would temporarily disable the security, upload it, then lock it down again

Re: Do i have to live with same group name for different project

2006-07-24 Thread Andrew Williams
what version of continuum? On Mon, 2006-07-24 at 15:49 -0500, [EMAIL PROTECTED] wrote: yes, and they all different Andrew Williams [EMAIL PROTECTED] 07/24/2006 02:38 PM Please respond to continuum-users To: continuum-users@maven.apache.org cc: Subject

Re: [M2] Insert variables in xdoc/apt files

2006-07-18 Thread Andrew Williams
why not use src/site/xdoc as the targetPath and use, say src/site/unfiltered-xdoc as the source? That way you do not need to reconfigure the site-plugin... Andy Sebastien Pennec wrote: Alexander, Until now, I've been successful at filtering the values, but no satisfying site is generated

Re: Site plugin and modules

2006-07-12 Thread Andrew Williams
I think the question is really why are the modules not inheriting from the aggregator, that is certainly normal. The aggregator can inherit from the parent (or what you sometimes seem to call super) if it is defaults that you are woried about inheriting. The site plugin will always (if I

  1   2   >