Re: Release maven skins?

2006-01-09 Thread John Fallows
ository or > the project repository? I don't remember - what was the rationale for separating the plugin repository from the main repository? If the same rationale applies, then i suppose we should use the plugin repo for site skins as well, unless a separate skin repository would be more appr

Re: [ANN] Maven 2.0 Release Now Available

2005-10-21 Thread John Fallows
Congratulations on a job well done. :-) Kind Regards, John Fallows. On 10/19/05, Brett Porter <[EMAIL PROTECTED]> wrote: > We are pleased to announce that Maven 2.0 has been released, and is > available for download from http://maven.apache.org/maven2/download.html > > Maven

Re: dev process for 2.0.1/2.1

2005-10-20 Thread John Fallows
til we feel things have settled down on the 2.0 front. The element in 2.0.x POM would always contain 2.0.[something]-SNAPSHOT, which would then remove the -SNAPSHOT during release (when /tags/2.0.[something] is created), and then increment to 2.0.[something + 1]-SNAPSHOT on the 2.0.x branch.

Re: dev process for 2.0.1/2.1

2005-10-16 Thread John Fallows
Ok, not going to include much content here. I have a few thoughts, but I > was hoping to get a varierty of opinions from devs and potential > contributors about what would work best for them. Kind Regards, John Fallows. --

[jira] Created: (MNG-1042) resources and test resources not copied incrementally to target when filtering is off

2005-09-28 Thread John Fallows (JIRA)
: Improvement Components: maven-resources-plugin Environment: WinXP SP2, Java 1.4.2 Reporter: John Fallows When filtering is disabled, resources and testResources are not copied incrementally. For example, if the target file exists and has a more recent timestamp, the resource file should not be

[jira] Created: (MNG-1041) Classifier-specific dependencies colliding with generic dependencies

2005-09-28 Thread John Fallows (JIRA)
: Win XP SP2, Java 1.4.2 Reporter: John Fallows It seems like there is a collision between dependencies from the same project but with different classifiers, causing only the main dependency artifact to be present on the compilation classpath. project/ api-module/ impl-module/ The api-module

[jira] Created: (MNG-985) plugin goals referenced in build/pluginManagment unexpectedly executed during lifecycle

2005-09-22 Thread John Fallows (JIRA)
Versions: 2.0-beta-1 Environment: WinXP SP2, Java 1.4.2_06, Maven 2.0-beta-1 Reporter: John Fallows Attachments: pom.xml Goals referenced in plugins are executed during the lifecycle - this is unexpected. See the attached pom.xml as an example. Running "m2 install" on this pom

[jira] Commented: (MNG-977) remove need for plugin groups

2005-09-22 Thread John Fallows (JIRA)
[ http://jira.codehaus.org/browse/MNG-977?page=comments#action_46960 ] John Fallows commented on MNG-977: -- Even when plugin groups are no longer required to identify which plugin groups are present, they should still be available to control the ordering of

[jira] Created: (MNG-980) Provide control over precedence of org.apache.maven.plugins group in search path

2005-09-22 Thread John Fallows (JIRA)
Versions: 2.0-beta-1 Reporter: John Fallows settings.xml has a section to list additional groupIds to search for top level m2 plugin goals. By default, "org.apache.maven.plugins" is not required to be present in this list, and always wins if there is a collision. that expli

[jira] Commented: (MNG-908) Context class loader references incorrect realm during plugin execution

2005-09-17 Thread John Fallows (JIRA)
[ http://jira.codehaus.org/browse/MNG-908?page=comments#action_46580 ] John Fallows commented on MNG-908: -- This problem seems unrelated to MNG-697 since it does not require the plugin to access classes from the main project. > Context class loa

[jira] Created: (MNG-908) Context class loader references incorrect realm during plugin execution

2005-09-17 Thread John Fallows (JIRA)
Environment: WinXP SP2, Java 1.4.2, Maven-2.0-beta-1 Reporter: John Fallows John Fallows wrote: I am currently developing a custom maven2 plugin that needs to parse some xml files (using xmlbeans). Therefore I used the m2 xmlbeans plugin at mojo.codehaus.org to generate the Java code for 3 different

Re: Maven 2.0 Beta 1 Released

2005-09-16 Thread John Fallows
Congratulations to the Apache Maven team - this is a great milestone! Kind Regards, John Fallows. On 9/16/05, Brett Porter <[EMAIL PROTECTED]> wrote: > The Apache Maven team are proud to announce the beta release of Maven 2.0. > > Download it from http://maven.apache.org/maven

[jira] Commented: (MNG-823) Ability to allow mojos to communicate with each others - other than project's source root and project's attachment

2005-09-11 Thread John Fallows (JIRA)
[ http://jira.codehaus.org/browse/MNG-823?page=comments#action_46102 ] John Fallows commented on MNG-823: -- There is another usecase for sharing context between mojos in the same plugin. Here is the email sent to Maven Users List. I'm writing a m

[jira] Commented: (MNG-609) Filtered resources should support ${pom.*} and ${project.*} syntax only, not ${*}, for POM properties

2005-09-07 Thread John Fallows (JIRA)
[ http://jira.codehaus.org/browse/MNG-609?page=comments#action_45958 ] John Fallows commented on MNG-609: -- In what sense is this a backwards compatibility issue? I thought that the pom-variables-resolved-during-resource-filtering feature was added to the

[jira] Created: (MNG-841) Support customization of default excludes

2005-09-07 Thread John Fallows (JIRA)
Reporter: John Fallows Our company uses a home-grown version control system that has it's own per-directory admin subdirectory, similar in purpose to the administration subdirectories used by other version control systems, eg. CVS, .svn, etc. These directories are excluded from processing by de

Re: Integration vs acceptance tests [was (MNG-591) Integration tests lifecycle]

2005-08-05 Thread John Fallows
On 7/25/05, Rafal Krzewski <[EMAIL PROTECTED]> wrote: > John Fallows wrote: > > > Is it always considered a build failure if integration tests do not pass > > 100%? > > I did you mean acceptance tests? I'm glad you raised this, Rafal. I agree with your des

Re: generated-files policy in maven2

2005-07-20 Thread John Fallows
On 7/20/05, Kenney Westerhof <[EMAIL PROTECTED]> wrote: > On Wed, 20 Jul 2005, John Fallows wrote: > > > On 7/20/05, Brett Porter <[EMAIL PROTECTED]> wrote: > > > It seems that classification of these sources into main, test, site, > > itest, etc, would

Re: generated-files policy in maven2

2005-07-20 Thread John Fallows
On 7/20/05, Brett Porter <[EMAIL PROTECTED]> wrote: > John Fallows wrote: > > >If the PLUGIN-NAME is the plugin artifactId, doesn't this lead to > >collisions when plugins only differ by groupId? > > > > > It's actually whatever the plugin wants to

Re: generated-files policy in maven2

2005-07-19 Thread John Fallows
test/ java/ resources/ target/ generated-src/ main/ java/ resources/ test/ java/ resources/ etc. One obvious answer is to avoid collisions, but I'm not sure that matters if all the various generated sources nee

[jira] Created: (MNG-609) Filtered resources should support ${pom.*} and ${project.*} syntax only, not ${*}, for POM properties

2005-07-18 Thread John Fallows (JIRA)
: Maven 2 Type: Bug Versions: 2.0-alpha-3 Environment: Maven 2.0-alpha-3, WinXP SP2, Java 1.5.0_02 Reporter: John Fallows I noticed that the latest code on the trunk adds support for filtered resources, including the ability to refer to pom properties, in addition to any filter

[jira] Created: (MNG-606) deploy and release information

2005-07-18 Thread John Fallows (JIRA)
Reporter: John Fallows m2 deploy does not include RELEASE information by default. Presumably this works as designed to avoid accidental release publishing during nightly build deployment? m2 -DupdateReleaseInfo=true deploy breaks on first deploy with a FileNotFoundException. -- This message

[jira] Created: (MNG-604) NPE in maven2 javadoc report when organization missing from local POM

2005-07-18 Thread John Fallows (JIRA)
Versions: 2.0-alpha-3 Environment: Maven 2.0-alpha-3, WinXP SP2, Java 1.5.0_02 Reporter: John Fallows I just noticed a NPE in the Maven2 Javadoc Report that occurs when ... is not present in the POM. Also, it does not seem to matter if the parent POM has the ..., the NPE still occurs. -- This

Re: [jira] Created: (MNG-591) Integration tests lifecycle

2005-07-15 Thread John Fallows
ngines for integration testing, including junit. According to the above feedback then, the cactus integration tests would reside in either src/test/cactus or src/itest/cactus. [snip] Kind Regards, John Fallows. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[jira] Commented: (MNG-583) Allow plugins to add dynamic resource roots and test resource roots

2005-07-13 Thread John Fallows (JIRA)
[ http://jira.codehaus.org/browse/MNG-583?page=comments#action_42817 ] John Fallows commented on MNG-583: -- It is possible to workaround the missing project.addResourceRoot(String) with the following code. String resourceRoot = ...; List resources

[jira] Created: (MNG-587) Add support for custom ruleset in maven-checkstyle-plugin

2005-07-13 Thread John Fallows (JIRA)
Environment: Maven 2.0-alpha-3, WinXP SP2, Java 1.5.0_02 Reporter: John Fallows Currently, there is no way to supply a custom ruleset for the maven-checkstyle-plugin. A custom ruleset is likely to span multiple projects, and it doesn't make sense to duplicate the custom ruleset fi

[jira] Created: (MNG-583) Allow plugins to add dynamic resource roots and test resource roots

2005-07-13 Thread John Fallows (JIRA)
Versions: 2.0-alpha-3 Environment: Maven 2.0-alpha-3, WinXP SP2, Java 1.5.0_02 Reporter: John Fallows Please add something equivalent to MavenProject.addResourceRoot(String) and MavenProject.addTestResourceRoot(String) to allow plugins to dynamically include generated resources that can be

[jira] Created: (MNG-558) Incorrect groupId, artifactId, version used during install

2005-07-07 Thread John Fallows (JIRA)
Environment: Maven 2.0-alpha-3, Java 1.5.0_02, WinXP SP2 Reporter: John Fallows When is present in pom.xml with "pom" packaging, then the last plugin artifact information (groupId, artifactId, version) is used during m2 install. 4.0.0 org.example sample al

[jira] Created: (MNG-527) Attempt to determine Plugin RELEASE version fails when managed by second pluginRepository

2005-06-25 Thread John Fallows (JIRA)
Versions: 2.0-alpha-3 Environment: WinXP SP2, Java 1.5, Maven 2.0-alpha3 Reporter: John Fallows Consider the case where two elements are present in pom.xml, and a particular plugin is being stored in the second plugin repository. During a build, say m2 install, plugin versions are

Re: [m2] pom schema validation

2005-06-11 Thread John Fallows
If processContents was set to "skip", the would validate, but that seems very lenient. If "war" was defined as a namespace prefix, then: ... would validate just fine. (Note. war-colon-bundle, not war-period-bundle). If you changed the style of

[m2] pom schema validation

2005-06-10 Thread John Fallows
ments at each nested level within the document. This gives greater flexibility during editing, without sacrificing correctness. Kind Regards, John Fallows. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[m2] target directory layout

2005-05-14 Thread John Fallows
ted sources? For example: src src/main src/main/java src/main/resources target target/src target/src/main target/src/main/java target/src/main/resources This would be convenient for plugin developers who are writing for the "generate-sources" m2 lifecycle