[jira] Created: (MNG-4032) Test jar dependency not available for for main classes in multi module builds

2009-02-12 Thread Henrik Brautaset Aronsen (JIRA)
Test jar dependency not available for for main classes in multi module builds
-

 Key: MNG-4032
 URL: http://jira.codehaus.org/browse/MNG-4032
 Project: Maven 2
  Issue Type: Bug
  Components: Bootstrap  Build, Class Loading, Dependencies, 
Inheritance and Interpolation
Affects Versions: 2.1.0-M1, 2.0.9
 Environment: MacOSX, Linux
Reporter: Henrik Brautaset Aronsen
 Attachments: tests-dependency.zip

I have a module layout like this:
{noformat}
root -+- first
  +- second
{noformat}
I have the test-jar plugin enabled, thus a *-tests.jar is built for each 
module.  In the second module, I have defined a dependency to first's tests jar:
{noformat}
   dependency
  groupIdme/groupId
  artifactIdfirst/artifactId
  classifiertests/classifier
  version1.0-SNAPSHOT/version
  scopecompile/scope
   /dependency
{noformat}

And here's the problem:  A class in the second main folder imports a class from 
the first test folder.   If I build the second module separately it builds like 
it should.  But if I build both modules from the root module I get a 
compilation failure:
{noformat}
/.../root/second/src/main/java/me/SecondMain.java:[3,10] cannot find symbol
symbol  : class FirstTest
location: package me
{noformat}
A class in second's test folder also includes me.FirstTest, and it always 
compiles.  The scope somehow seems to be overridden when doing multi module 
builds.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MASSEMBLY-362) Not able to include ejb-client artifact in jar-with-dependencies

2009-02-12 Thread Henrik Brautaset Aronsen (JIRA)

[ 
http://jira.codehaus.org/browse/MASSEMBLY-362?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165221#action_165221
 ] 

Henrik Brautaset Aronsen commented on MASSEMBLY-362:


Maybe using 
[maven-shade-plugin|http://maven.apache.org/plugins/maven-shade-plugin/] 
instead of the assembly plugin will solve it?  I haven't had time to test it 
yet.



 Not able to include ejb-client artifact in jar-with-dependencies
 

 Key: MASSEMBLY-362
 URL: http://jira.codehaus.org/browse/MASSEMBLY-362
 Project: Maven 2.x Assembly Plugin
  Issue Type: Bug
Affects Versions: 2.2-beta-2
Reporter: Henrik Brautaset Aronsen

 The assembly:assembly target with jar-with-dependencies does not include my 
 ejb-client dependency.  The jar dependencies are included.  I've tried 
 specifiying my own assembly.xml, but the artifact isn't included nonetheless:
 assembly.xml:
 {code}includes
includemygroup:myartifact-ejb/include
 /includes
 {code}
 pom.xml:
 {code}dependency
groupIdmygroup/groupId
artifactIdmyartifact-ejb/artifactId
typeejb-client/type
 /dependency
 {code}
 I've also tried {{mygroup:myartifact-ejb:*}}, 
 {{mygroup:myartifact-ejb:ejb-client}} and a couple of other combinations.  
 Maven still complains:
 {code}[WARNING] The following patterns were never triggered in this artifact 
 inclusion filter:
 o  'mygroup:myartifact-ejb'
 {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MSITE-129) modules list empty if modules don't use this project as parent in reactor build

2009-02-12 Thread Per Lindfors (JIRA)

[ 
http://jira.codehaus.org/browse/MSITE-129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165254#action_165254
 ] 

Per Lindfors commented on MSITE-129:


I have done some quick testing of 2.0-SNAPSHOT from people.apache.org, and this 
is what I've found so far:

I have the following project structure:

{noformat}
+- myproj/ (parent - super-pom-A)
 +- module-1 (parent - super-pom-B)
 +- module-2 (parent - super-pom-C)
 +- module-3 (parent - super-pom-D)
 +- src/
  +- site/
   +- site.xml
{noformat}

The directory layout for my deployment site is still not correct/different from 
the layout created when you have aggregation and inheritence between the 
top/current project and the modules. This is what I get:

{noformat}
+- super-pom-A
 +- myproj
+- super-pom-B
 +- module-1
+- super-pom-C
 +- module-2
+- super-pom-D
 +- module-3
{noformat}

This is what it should look like:

{noformat}
+- myproj
 +- module-1
 +- module-2
 +- module-3
 +- css/
 +- images/
 +- index.html
 +- ...

{noformat}


*Result*
- The module links are created but broken (in beta-7 the links weren't even 
created - I think). 
- Incorrect structure of site
- the site.xml is not propagated to modules, only to myproj(I don't have 
site.xml in modules so maybe this isn't a bug/issue?)


 modules list empty if modules don't use this project as parent in reactor 
 build
 ---

 Key: MSITE-129
 URL: http://jira.codehaus.org/browse/MSITE-129
 Project: Maven 2.x Site Plugin
  Issue Type: Bug
  Components: multi module
Affects Versions: 2.0-beta-5
Reporter: Kenney Westerhof
Assignee: Dennis Lundberg
Priority: Minor
 Fix For: 2.0


 The code in the AbstractSiteRenderingMojo does the following:
 - if it's running in a reactor build (i.e. more than 1 project in the reactor 
 projects) it scans all
 projects to see if it's parent project equals the current project. If so, 
 it's marked as a module.
 - if it's running on a single project, the project.build.modules is consulted 
 and those modules
 are marked as modules.
 I've got a 'fake' root pom, for utility purposes: it lists all projects as 
 modules so that I can easily
 built everything and generate a site. However, this fake root pom is never 
 used as a parent - there's
 a /pom/pom.xml project for that.
 The result of this is that the modules list is empty.
 A workaround is to first run 'mvn site' and then 'mvn site -N'.
 I'm not sure what the correct solution should be - basically now 2 site 
 layouts are implemented:
 - a physical layout where the modules match the modules section of the pom, 
 reflecting filesystem layout,
 - a project hierarchy layout based on parent
 and one or the other is used depending on wheter the build contains more than 
 1 project or not.
 My first feeling is that since the tag is called ${modules} (or menu 
 ref=modules/) that
 the site should use the modules, not the parent. 
 It should also take into consideration, that IF a reactor build is running, 
 it should only use the modules that are also
 in the reactor (so you can use -r -Dmaven.reactor.excludes=.. to generate a 
 site with not all projects in it).
 Thoughts?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MWAR-107) CLONE -Dependency type ejb-client includes main ejb-jar in WAR build.

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg closed MWAR-107.


  Assignee: (was: Brett Porter)
Resolution: Cannot Reproduce

I have tried this using Maven 2.0.9 and Maven WAR Plugin 2.1-alpha-2 and I 
cannot reproduce this issue.

 CLONE -Dependency type ejb-client includes main ejb-jar in WAR build.
 ---

 Key: MWAR-107
 URL: http://jira.codehaus.org/browse/MWAR-107
 Project: Maven 2.x War Plugin
  Issue Type: Bug
 Environment: Windows XP SP2, J2SE 5.0
Reporter: Heinrich Nirschl

 When I specify a dependency as type ejb-client for a project whose 
 packaging is set to war, the build includes the main EJB JAR in the 
 WEB-INF/lib directory, not the EJB client JAR.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MWAR-80) Classifier in jar file name is removed once assembled into war file

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-80?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg closed MWAR-80.
---

 Assignee: Dennis Lundberg
   Resolution: Fixed
Fix Version/s: 2.1

I have documented the current behavior better.
I also added a test case to verify that the classifier of a dependency is not 
lost in translation.

 Classifier in jar file name is removed once assembled into war file
 ---

 Key: MWAR-80
 URL: http://jira.codehaus.org/browse/MWAR-80
 Project: Maven 2.x War Plugin
  Issue Type: Bug
 Environment: Maven 2.0.4, JDK 1.5, maven-war-plugin version 2.0
Reporter: Andreas Guther
Assignee: Dennis Lundberg
 Fix For: 2.1


 We use the Maven classifier to distinguish between different jar files of the 
 same version build for different purposes.  An example would be the 
 classifier used for TestNG to distinguish between jdk15 and jdk14 jar files.
 I noticed that the jar file (for example test-1.0-classifier.jar) ends up in 
 the WEB-INF/lib folder with the classifier removed (i.e. following the 
 example test.1.0.jar).
 This is unexpected and confusing.  Since there is very little documentation 
 about the expected behavior while using classifiers, it is not clear if this 
 is intenionally or a bug.  
 If intenionally, it should be mentioned in the maven-war-plugin 
 documentation.  Maybe in that case it would be an enhancement to configure if 
 the classifier should be preserved or removed.
 However, the current behavior is undocumented and unexpected.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MWAR-182) warSourceIncludes no longer works

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-182?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg updated MWAR-182:
-

Description: 
The warSourceIncludes element no longer seems to work, as of 2.1-alpha-2. It 
does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
demonstrate the problem when used as follows:

1) From the directory containing the pom.xml, create a web.xml, because 
otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
  mkdir -p src/main/webapp/WEB-INF
  touch src/main/webapp/WEB-INF/web.xml

2) Build with the 2.1-alpha-1 plugin
 mvn clean install -Dwar.plugin.version=2.1-alpha-1

3) Dump out the jar contents to verify that only commons-logging and the 
web.xml were packaged, as requested
[warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/web.xml
WEB-INF/lib/
WEB-INF/lib/commons-logging-1.1.jar
META-INF/maven/
META-INF/maven/example/
META-INF/maven/example/example-war/
META-INF/maven/example/example-war/pom.xml
META-INF/maven/example/example-war/pom.properties

4) Now build using the 2.1-alpha-2 plugin version:
 mvn clean install -Dwar.plugin.version=2.1-alpha-2

5) Dump out the jar contents and notice that warSourceIncludes was ignored this 
time:
[warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/classes/
WEB-INF/lib/
WEB-INF/web.xml
WEB-INF/lib/commons-logging-1.1.jar
WEB-INF/lib/log4j-1.2.12.jar
WEB-INF/lib/logkit-1.0.1.jar
WEB-INF/lib/avalon-framework-4.1.3.jar
WEB-INF/lib/servlet-api-2.3.jar
META-INF/maven/
META-INF/maven/example/
META-INF/maven/example/example-war/
META-INF/maven/example/example-war/pom.xml
META-INF/maven/example/example-war/pom.properties



  was:
The warSourceExcludes element no longer seems to work, as of 2.1-alpha-2. It 
does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
demonstrate the problem when used as follows:

1) From the directory containing the pom.xml, create a web.xml, because 
otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
  mkdir -p src/main/webapp/WEB-INF
  touch src/main/webapp/WEB-INF/web.xml

2) Build with the 2.1-alpha-1 plugin
 mvn clean install -Dwar.plugin.version=2.1-alpha-1

3) Dump out the jar contents to verify that only commons-logging and the 
web.xml were packaged, as requested
[warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/web.xml
WEB-INF/lib/
WEB-INF/lib/commons-logging-1.1.jar
META-INF/maven/
META-INF/maven/example/
META-INF/maven/example/example-war/
META-INF/maven/example/example-war/pom.xml
META-INF/maven/example/example-war/pom.properties

4) Now build using the 2.1-alpha-2 plugin version:
 mvn clean install -Dwar.plugin.version=2.1-alpha-2

5) Dump out the jar contents and notice that warSourceIncludes was ignored this 
time:
[warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/classes/
WEB-INF/lib/
WEB-INF/web.xml
WEB-INF/lib/commons-logging-1.1.jar
WEB-INF/lib/log4j-1.2.12.jar
WEB-INF/lib/logkit-1.0.1.jar
WEB-INF/lib/avalon-framework-4.1.3.jar
WEB-INF/lib/servlet-api-2.3.jar
META-INF/maven/
META-INF/maven/example/
META-INF/maven/example/example-war/
META-INF/maven/example/example-war/pom.xml
META-INF/maven/example/example-war/pom.properties



Summary: warSourceIncludes no longer works  (was: warSourceExcludes no 
longer works)

 warSourceIncludes no longer works
 -

 Key: MWAR-182
 URL: http://jira.codehaus.org/browse/MWAR-182
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: RHEL 3
Reporter: Bryan Loofbourrow
 Attachments: pom.xml


 The warSourceIncludes element no longer seems to work, as of 2.1-alpha-2. 
 It does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
 demonstrate the problem when used as follows:
 1) From the directory containing the pom.xml, create a web.xml, because 
 otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
   mkdir -p src/main/webapp/WEB-INF
   touch src/main/webapp/WEB-INF/web.xml
 2) Build with the 2.1-alpha-1 plugin
  mvn clean install -Dwar.plugin.version=2.1-alpha-1
 3) Dump out the jar contents to verify that only commons-logging and the 
 web.xml were packaged, as requested
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/web.xml
 WEB-INF/lib/
 WEB-INF/lib/commons-logging-1.1.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 

[jira] Commented: (MAVENUPLOAD-2323) Upload of FDS-API 1.04

2009-02-12 Thread JIRA

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165286#action_165286
 ] 

Rémy Sanlaville commented on MAVENUPLOAD-2323:
--

It would be nice to redeploy the correct bundle.
It's blocking for us.
Thanks

 Upload of FDS-API 1.04
 --

 Key: MAVENUPLOAD-2323
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2323
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Edouard Hue
Assignee: Carlos Sanchez
 Attachments: fdsapi-1.0.4-bundle.jar, fdsapi-1.0.4-bundle.jar


 This is not a Maven project. The author (Steve Souza) isn't currently 
 intersted in migrating fdsapi to Maven. This bundle was generated from the 
 1_04 release available at 
 http://sourceforge.net/project/showfiles.php?group_id=87044package_id=90549release_id=317647
  using the repository plugin.
 Thanks for uploading !

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Reopened: (MWAR-181) warSourceExcludes does not work in 2.1-alpha-2

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg reopened MWAR-181:
--


On closer inspection it is not the same issue as MWAR-182.

 warSourceExcludes does not work in 2.1-alpha-2
 --

 Key: MWAR-181
 URL: http://jira.codehaus.org/browse/MWAR-181
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
Reporter: Petr Kozelka
Priority: Critical

 we use following configuration to produce jar-less war artifacts, in order to 
 embed them to EAR:
 {{warSourceExcludesWEB-INF/lib/*.jar/warSourceExcludes}}
 This does not work with release 2.1-alpha-2.
 Switching to 2.1-alpha-1 solves the problem.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MWAR-181) warSourceExcludes does not work in 2.1-alpha-2

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg closed MWAR-181.


Resolution: Not A Bug

This was a deliberate change between 2.1-alpha-1 and 2.1-alpha-2. From 
2.1-alpha-2 onwards warSourceExcludes works *only* on the files in the 
warSourceDirectory.

To exclude files that are added during the packaging of the WAR you should use 
this instead:

{code:xml}
packagingExcludesWEB-INF/lib/*.jar/packagingExcludes
{code}

 warSourceExcludes does not work in 2.1-alpha-2
 --

 Key: MWAR-181
 URL: http://jira.codehaus.org/browse/MWAR-181
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
Reporter: Petr Kozelka
Priority: Critical

 we use following configuration to produce jar-less war artifacts, in order to 
 embed them to EAR:
 {{warSourceExcludesWEB-INF/lib/*.jar/warSourceExcludes}}
 This does not work with release 2.1-alpha-2.
 Switching to 2.1-alpha-1 solves the problem.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MWAR-182) warSourceIncludes no longer works

2009-02-12 Thread Dennis Lundberg (JIRA)

[ 
http://jira.codehaus.org/browse/MWAR-182?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165291#action_165291
 ] 

Dennis Lundberg commented on MWAR-182:
--

The behavior of warSourceIncludes was deliberately changed between 
2.1-alpha-1 and 2.1-alpha-2. From 2.1-alpha-2 onwards warSourceIncludes works 
only on the files in the warSourceDirectory.

To exclude files that are added during the packaging of the WAR you can use 
this:

packagingExcludesWEB-INF/lib/*.jar/packagingExcludes

But there is no corresponding packagingIncludes parameter. Do you really need 
such a parameter?

 warSourceIncludes no longer works
 -

 Key: MWAR-182
 URL: http://jira.codehaus.org/browse/MWAR-182
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: RHEL 3
Reporter: Bryan Loofbourrow
 Attachments: pom.xml


 The warSourceIncludes element no longer seems to work, as of 2.1-alpha-2. 
 It does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
 demonstrate the problem when used as follows:
 1) From the directory containing the pom.xml, create a web.xml, because 
 otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
   mkdir -p src/main/webapp/WEB-INF
   touch src/main/webapp/WEB-INF/web.xml
 2) Build with the 2.1-alpha-1 plugin
  mvn clean install -Dwar.plugin.version=2.1-alpha-1
 3) Dump out the jar contents to verify that only commons-logging and the 
 web.xml were packaged, as requested
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/web.xml
 WEB-INF/lib/
 WEB-INF/lib/commons-logging-1.1.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties
 4) Now build using the 2.1-alpha-2 plugin version:
  mvn clean install -Dwar.plugin.version=2.1-alpha-2
 5) Dump out the jar contents and notice that warSourceIncludes was ignored 
 this time:
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/classes/
 WEB-INF/lib/
 WEB-INF/web.xml
 WEB-INF/lib/commons-logging-1.1.jar
 WEB-INF/lib/log4j-1.2.12.jar
 WEB-INF/lib/logkit-1.0.1.jar
 WEB-INF/lib/avalon-framework-4.1.3.jar
 WEB-INF/lib/servlet-api-2.3.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MWAR-178) war plugin documentation and probably implementation is unaware of javaee 5

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg updated MWAR-178:
-

Issue Type: New Feature  (was: Bug)

 war plugin documentation and probably implementation is unaware of javaee 5
 ---

 Key: MWAR-178
 URL: http://jira.codehaus.org/browse/MWAR-178
 Project: Maven 2.x War Plugin
  Issue Type: New Feature
Reporter: David Jencks

 The example I'm aware of:
 http://maven.apache.org/plugins/maven-war-plugin/examples/skinny-wars.html 
 talks about using the war's manifest.mf classpath to include jars in the ear 
 in the war module's classloader.  In ee5, there's a ear lib directory: 
 everything in that is automatically included in the ear level classloader, 
 which is certainly available to every war, most likely by being a parent 
 classloader to the war classloader.  One consequence of this is that using 
 the manifest classpath in a 1.4 container will likely result in each war 
 getting separate copies of the lib jar classes whereas the ee5 lib directory 
 will result in shared classes.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MWAR-176) when archiveClasses is true, jar file has incorrect name

2009-02-12 Thread Dennis Lundberg (JIRA)

[ 
http://jira.codehaus.org/browse/MWAR-176?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165293#action_165293
 ] 

Dennis Lundberg commented on MWAR-176:
--

Can you give us a POM that shows the configurations needed to reproduce this?

 when archiveClasses is true, jar file has incorrect name
 

 Key: MWAR-176
 URL: http://jira.codehaus.org/browse/MWAR-176
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: jdk 1.6 - maven 2.0.9
Reporter: Hugues Narjoux

 I have a parent pom which defines a build number using the build number 
 plugin. My project's finalName is of the form :
 ${artifcatId}_${version}_${buildNumber}
 The war is correctly named, but the when using archiveClasses the jar is not 
 named properly: it is named the same but without replacing the buildNumber 
 property, e.g:
 myAtifcat_1.0_${buildNumber}.jar
 It works fine if the build number is defined in the pom itself. This happens 
 if the buidlNumber is defined in a parent pom.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MRELEASE-220) Add property to keep released versions for dependencies

2009-02-12 Thread Peter Liljenberg (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165292#action_165292
 ] 

Peter Liljenberg commented on MRELEASE-220:
---

After digging into the code it looks like the actual bug is in ReleaseManager 
rather than the plugin itself:

   //MRELEASE-220
if ( mappedVersion != null  mappedVersion.endsWith( 
SNAPSHOT ) 
!dependencyVersion.endsWith( SNAPSHOT )  
!releaseDescriptor.isUpdateDependencies() )
{
return;
}

Shouldn't we check the dependencyVersion here?
if (  !dependencyVersion.endsWith( SNAPSHOT )  
!releaseDescriptor.isUpdateDependencies() )
{
return;
}


 Add property to keep released versions for dependencies
 ---

 Key: MRELEASE-220
 URL: http://jira.codehaus.org/browse/MRELEASE-220
 Project: Maven 2.x Release Plugin
  Issue Type: Improvement
  Components: prepare
Affects Versions: 2.0-beta-4
Reporter: Daniel Beland
Assignee: Emmanuel Venisse

 When I release a project with many modules with internal dependencies.
 I would like those dependencies to keep the released version rather than the 
 next development version.
 ie: I only release some modules at a time (those that were changed only since 
 last release).
 So when my webapp is released, I want it to become SNAPSHOT again(as it is 
 done already) but want the internal dependencies to keep the released version.
 I want to update them manually whenever I change one.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MWAR-154) documentation for overlay is incorrect

2009-02-12 Thread Dennis Lundberg (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-154?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Lundberg closed MWAR-154.


Resolution: Fixed

This seems to have solved itself in some way.

 documentation for overlay is incorrect
 --

 Key: MWAR-154
 URL: http://jira.codehaus.org/browse/MWAR-154
 Project: Maven 2.x War Plugin
  Issue Type: Task
Reporter: Olaf Kittelmann
Assignee: Stephane Nicoll

 The documentation on 
 http://maven.apache.org/plugins/maven-war-plugin/overlays.html describes a 
 feature that only works with 
 version 2.1-alpha-1 of the plugin. 
 yet the pom snippets on the documentation page always point to version 2.0. 
  [...]
 plugins
   plugin
 groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-war-plugin/artifactId
 version2.0/version
 configuration
   !-- default value is ** --
   dependentWarIncludes**/IncludeME,**/images/dependentWarIncludes 
   
 /configuration
/plugin
 /plugins  
   [...]

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MWAR-182) warSourceIncludes no longer works

2009-02-12 Thread Bryan Loofbourrow (JIRA)

[ 
http://jira.codehaus.org/browse/MWAR-182?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165306#action_165306
 ] 

Bryan Loofbourrow commented on MWAR-182:


Not only do I need it, I am using it in a large, multimodule project, and it is 
hard to know what would substitute for it. Not packagingExcludes. My need is to 
package a small, but nonempty, subset of the jars into the war. That's hard to 
do well, and impossible to do in a stable manner, using a specification that 
can only tell what to exclude.

The need to package a small, but nonempty, subset of jars into a war, comes 
from the longstanding skinny war problem ( 
http://docs.codehaus.org/display/MAVENUSER/Solving+the+Skinny+Wars+problem ). 
In making an ear of skinny wars, one wants to package all of the jars into the 
ear, with, in some cases, a short list of exceptions that must be packaged into 
the war in order to work properly (generally tag libraries, in my case).

There are few decent solutions to the skinny war problem as things stand in 
Maven. By removing this includes functionality from the war plugin, the team 
would be taking away what is, in the current state of things, by far the best 
one, in my opinion.  


 warSourceIncludes no longer works
 -

 Key: MWAR-182
 URL: http://jira.codehaus.org/browse/MWAR-182
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: RHEL 3
Reporter: Bryan Loofbourrow
 Attachments: pom.xml


 The warSourceIncludes element no longer seems to work, as of 2.1-alpha-2. 
 It does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
 demonstrate the problem when used as follows:
 1) From the directory containing the pom.xml, create a web.xml, because 
 otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
   mkdir -p src/main/webapp/WEB-INF
   touch src/main/webapp/WEB-INF/web.xml
 2) Build with the 2.1-alpha-1 plugin
  mvn clean install -Dwar.plugin.version=2.1-alpha-1
 3) Dump out the jar contents to verify that only commons-logging and the 
 web.xml were packaged, as requested
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/web.xml
 WEB-INF/lib/
 WEB-INF/lib/commons-logging-1.1.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties
 4) Now build using the 2.1-alpha-2 plugin version:
  mvn clean install -Dwar.plugin.version=2.1-alpha-2
 5) Dump out the jar contents and notice that warSourceIncludes was ignored 
 this time:
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/classes/
 WEB-INF/lib/
 WEB-INF/web.xml
 WEB-INF/lib/commons-logging-1.1.jar
 WEB-INF/lib/log4j-1.2.12.jar
 WEB-INF/lib/logkit-1.0.1.jar
 WEB-INF/lib/avalon-framework-4.1.3.jar
 WEB-INF/lib/servlet-api-2.3.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MWAR-176) when archiveClasses is true, jar file has incorrect name

2009-02-12 Thread Hugues Narjoux (JIRA)

 [ 
http://jira.codehaus.org/browse/MWAR-176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hugues Narjoux updated MWAR-176:


Attachment: parent_pom.xml

The parent pom with the war plugin declaration

 when archiveClasses is true, jar file has incorrect name
 

 Key: MWAR-176
 URL: http://jira.codehaus.org/browse/MWAR-176
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: jdk 1.6 - maven 2.0.9
Reporter: Hugues Narjoux
 Attachments: parent_pom.xml


 I have a parent pom which defines a build number using the build number 
 plugin. My project's finalName is of the form :
 ${artifcatId}_${version}_${buildNumber}
 The war is correctly named, but the when using archiveClasses the jar is not 
 named properly: it is named the same but without replacing the buildNumber 
 property, e.g:
 myAtifcat_1.0_${buildNumber}.jar
 It works fine if the build number is defined in the pom itself. This happens 
 if the buidlNumber is defined in a parent pom.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MWAR-176) when archiveClasses is true, jar file has incorrect name

2009-02-12 Thread Hugues Narjoux (JIRA)

[ 
http://jira.codehaus.org/browse/MWAR-176?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165309#action_165309
 ] 

Hugues Narjoux commented on MWAR-176:
-

I attached a sample parent pom which contains the declaration of the war plugin 
and the build number plugin.

The child pom does not contain anything special, except inheriting the parent 
pom.


 when archiveClasses is true, jar file has incorrect name
 

 Key: MWAR-176
 URL: http://jira.codehaus.org/browse/MWAR-176
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: jdk 1.6 - maven 2.0.9
Reporter: Hugues Narjoux
 Attachments: parent_pom.xml


 I have a parent pom which defines a build number using the build number 
 plugin. My project's finalName is of the form :
 ${artifcatId}_${version}_${buildNumber}
 The war is correctly named, but the when using archiveClasses the jar is not 
 named properly: it is named the same but without replacing the buildNumber 
 property, e.g:
 myAtifcat_1.0_${buildNumber}.jar
 It works fine if the build number is defined in the pom itself. This happens 
 if the buidlNumber is defined in a parent pom.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (MNG-4033) Introduce 2.1.x password encryption to the trunk

2009-02-12 Thread Oleg Gusakov (JIRA)
Introduce 2.1.x password encryption to the trunk


 Key: MNG-4033
 URL: http://jira.codehaus.org/browse/MNG-4033
 Project: Maven 2
  Issue Type: New Feature
  Components: Settings
Affects Versions: 3.0-alpha-2
Reporter: Oleg Gusakov




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MSITE-129) modules list empty if modules don't use this project as parent in reactor build

2009-02-12 Thread John Allen (JIRA)

[ 
http://jira.codehaus.org/browse/MSITE-129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165319#action_165319
 ] 

John Allen commented on MSITE-129:
--

df

 modules list empty if modules don't use this project as parent in reactor 
 build
 ---

 Key: MSITE-129
 URL: http://jira.codehaus.org/browse/MSITE-129
 Project: Maven 2.x Site Plugin
  Issue Type: Bug
  Components: multi module
Affects Versions: 2.0-beta-5
Reporter: Kenney Westerhof
Assignee: Dennis Lundberg
Priority: Minor
 Fix For: 2.0


 The code in the AbstractSiteRenderingMojo does the following:
 - if it's running in a reactor build (i.e. more than 1 project in the reactor 
 projects) it scans all
 projects to see if it's parent project equals the current project. If so, 
 it's marked as a module.
 - if it's running on a single project, the project.build.modules is consulted 
 and those modules
 are marked as modules.
 I've got a 'fake' root pom, for utility purposes: it lists all projects as 
 modules so that I can easily
 built everything and generate a site. However, this fake root pom is never 
 used as a parent - there's
 a /pom/pom.xml project for that.
 The result of this is that the modules list is empty.
 A workaround is to first run 'mvn site' and then 'mvn site -N'.
 I'm not sure what the correct solution should be - basically now 2 site 
 layouts are implemented:
 - a physical layout where the modules match the modules section of the pom, 
 reflecting filesystem layout,
 - a project hierarchy layout based on parent
 and one or the other is used depending on wheter the build contains more than 
 1 project or not.
 My first feeling is that since the tag is called ${modules} (or menu 
 ref=modules/) that
 the site should use the modules, not the parent. 
 It should also take into consideration, that IF a reactor build is running, 
 it should only use the modules that are also
 in the reactor (so you can use -r -Dmaven.reactor.excludes=.. to generate a 
 site with not all projects in it).
 Thoughts?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MWAR-182) warSourceIncludes no longer works

2009-02-12 Thread Jason Pringle (JIRA)

[ 
http://jira.codehaus.org/browse/MWAR-182?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165322#action_165322
 ] 

Jason Pringle commented on MWAR-182:


Agreed, adding a corresponding packagingIncludes parameter would allow 
precise control over what JARs should be packaged into an almost skinny WAR.

 warSourceIncludes no longer works
 -

 Key: MWAR-182
 URL: http://jira.codehaus.org/browse/MWAR-182
 Project: Maven 2.x War Plugin
  Issue Type: Bug
Affects Versions: 2.1-alpha-2
 Environment: RHEL 3
Reporter: Bryan Loofbourrow
 Attachments: pom.xml


 The warSourceIncludes element no longer seems to work, as of 2.1-alpha-2. 
 It does seem to work in 2.1-alpha-1. I am attaching a pom.xml file which will 
 demonstrate the problem when used as follows:
 1) From the directory containing the pom.xml, create a web.xml, because 
 otherwise it fails (setting failsOnMissingWebXml didn't seem to do the trick):
   mkdir -p src/main/webapp/WEB-INF
   touch src/main/webapp/WEB-INF/web.xml
 2) Build with the 2.1-alpha-1 plugin
  mvn clean install -Dwar.plugin.version=2.1-alpha-1
 3) Dump out the jar contents to verify that only commons-logging and the 
 web.xml were packaged, as requested
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/web.xml
 WEB-INF/lib/
 WEB-INF/lib/commons-logging-1.1.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties
 4) Now build using the 2.1-alpha-2 plugin version:
  mvn clean install -Dwar.plugin.version=2.1-alpha-2
 5) Dump out the jar contents and notice that warSourceIncludes was ignored 
 this time:
 [warsourceexample]$ jar -tf target/example-war-0.1-SNAPSHOT.war
 META-INF/
 META-INF/MANIFEST.MF
 WEB-INF/
 WEB-INF/classes/
 WEB-INF/lib/
 WEB-INF/web.xml
 WEB-INF/lib/commons-logging-1.1.jar
 WEB-INF/lib/log4j-1.2.12.jar
 WEB-INF/lib/logkit-1.0.1.jar
 WEB-INF/lib/avalon-framework-4.1.3.jar
 WEB-INF/lib/servlet-api-2.3.jar
 META-INF/maven/
 META-INF/maven/example/
 META-INF/maven/example/example-war/
 META-INF/maven/example/example-war/pom.xml
 META-INF/maven/example/example-war/pom.properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Issue Comment Edited: (MSITE-129) modules list empty if modules don't use this project as parent in reactor build

2009-02-12 Thread John Allen (JIRA)

[ 
http://jira.codehaus.org/browse/MSITE-129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165319#action_165319
 ] 

John Allen edited comment on MSITE-129 at 2/12/09 12:00 PM:


Module locations (and thus links) are based upon project.distro.site.url  and 
project.url. They have no bearing on where a module is on the filesystem.

 The structure you have drawn as 'what it should be' is stating that the 
submodules inherit from myproj, which they dont. And thats why in the generated 
site they dont live under it.

There are two very different namespaces here and none of them are related.

One is the filesystem. In this case your myproj and its sub dirs. This 
namespace has no bearing on the URL namespace or for that matter the project 
inheritance relationships.

The next is the project hierarchy. That does have a relationship to the URL 
namespace, only IF, you inherit the settings for project.url and 
project.distributionManagement.site.url. However if you override those at each 
project level then these two are unrelated.

When a project deploys itself into the URL space, it uses its distro.site.url 
to work out where it should go. This obviously needs to be related to the 
project's URL otherwise it will deploy to a location that no other project will 
ever be able to find by using that project's URL.

The module projects all do the same, namely deploy to locations dependent upon 
their distro.site.url.

So first up, there is no relationship between the deployemnt URL location and 
the filesystem structure.

A aggregator project, such as myproj generates links to its modules. These its 
calculates by asking each module, what is your DEPLOYED project url. Each 
project returns its URL and the aggregator project calculates the relative 
paths (if possible) to the module projects from its own URL.

You did deploy the projects to check that the module links were woerking didnt 
you? They will never work in an undeployed state.


  was (Author: skaze):
df
  
 modules list empty if modules don't use this project as parent in reactor 
 build
 ---

 Key: MSITE-129
 URL: http://jira.codehaus.org/browse/MSITE-129
 Project: Maven 2.x Site Plugin
  Issue Type: Bug
  Components: multi module
Affects Versions: 2.0-beta-5
Reporter: Kenney Westerhof
Assignee: Dennis Lundberg
Priority: Minor
 Fix For: 2.0


 The code in the AbstractSiteRenderingMojo does the following:
 - if it's running in a reactor build (i.e. more than 1 project in the reactor 
 projects) it scans all
 projects to see if it's parent project equals the current project. If so, 
 it's marked as a module.
 - if it's running on a single project, the project.build.modules is consulted 
 and those modules
 are marked as modules.
 I've got a 'fake' root pom, for utility purposes: it lists all projects as 
 modules so that I can easily
 built everything and generate a site. However, this fake root pom is never 
 used as a parent - there's
 a /pom/pom.xml project for that.
 The result of this is that the modules list is empty.
 A workaround is to first run 'mvn site' and then 'mvn site -N'.
 I'm not sure what the correct solution should be - basically now 2 site 
 layouts are implemented:
 - a physical layout where the modules match the modules section of the pom, 
 reflecting filesystem layout,
 - a project hierarchy layout based on parent
 and one or the other is used depending on wheter the build contains more than 
 1 project or not.
 My first feeling is that since the tag is called ${modules} (or menu 
 ref=modules/) that
 the site should use the modules, not the parent. 
 It should also take into consideration, that IF a reactor build is running, 
 it should only use the modules that are also
 in the reactor (so you can use -r -Dmaven.reactor.excludes=.. to generate a 
 site with not all projects in it).
 Thoughts?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MNG-4030) Release maven-plugin-tools 2.4.4/2.5 to enable enhanced ant-mojo support

2009-02-12 Thread Benjamin Bentmann (JIRA)

[ 
http://jira.codehaus.org/browse/MNG-4030?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165323#action_165323
 ] 

Benjamin Bentmann commented on MNG-4030:


Given you made significant feature additions, I feel 2.5 is more appropriate 
for the next version than 2.4.4.

 Release maven-plugin-tools 2.4.4/2.5 to enable enhanced ant-mojo support
 

 Key: MNG-4030
 URL: http://jira.codehaus.org/browse/MNG-4030
 Project: Maven 2
  Issue Type: Task
Reporter: John Casey
Assignee: John Casey
Priority: Blocker
 Fix For: 2.1.0


 This is necessary for MNG-3971.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MNG-3217) a plugin's dependencies can influence other plugins in a build

2009-02-12 Thread Benjamin Bentmann (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-3217?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Benjamin Bentmann closed MNG-3217.
--

 Assignee: Benjamin Bentmann
   Resolution: Fixed
Fix Version/s: (was: 2.0.x)
   3.0-alpha-1

 a plugin's dependencies can influence other plugins in a build
 --

 Key: MNG-3217
 URL: http://jira.codehaus.org/browse/MNG-3217
 Project: Maven 2
  Issue Type: Bug
  Components: Artifacts and Repositories
Affects Versions: 2.0.7
Reporter: Brian Fox
Assignee: Benjamin Bentmann
 Fix For: 3.0-alpha-1


 See the linked issue for more details.
 In short, the dependency plugin has declared a dependency on the site plugin 
 (forget for now that this is probably not a good ide). The problem is that in 
 doing this, the site plugin used for other things in the user's build is now 
 pinned to the version declared in the dependency plugin. This seems to 
 indicate some kind of pollution between what a plugin needs and what gets 
 used for a build.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MAVENUPLOAD-2334) Upload beansbinding-1.2.1

2009-02-12 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2334?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165326#action_165326
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2334:
-

groupid is wrong: net.java.dev.beansbinding

 Upload beansbinding-1.2.1
 -

 Key: MAVENUPLOAD-2334
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2334
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Alexandre Navarro
 Attachments: beansbinding-1.2.1-bundle.jar


 Thanks to upload beansbinding.
 Alexandre Navarro, Brian Beck and Shannon Hickey

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MNG-4030) Release maven-plugin-tools 2.4.4/2.5 to enable enhanced ant-mojo support

2009-02-12 Thread John Casey (JIRA)

[ 
http://jira.codehaus.org/browse/MNG-4030?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165327#action_165327
 ] 

John Casey commented on MNG-4030:
-

agreed.

 Release maven-plugin-tools 2.4.4/2.5 to enable enhanced ant-mojo support
 

 Key: MNG-4030
 URL: http://jira.codehaus.org/browse/MNG-4030
 Project: Maven 2
  Issue Type: Task
Reporter: John Casey
Assignee: John Casey
Priority: Blocker
 Fix For: 2.1.0


 This is necessary for MNG-3971.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2328) Upload of swingx-0.9.5-2 from java Net Repo

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2328?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2328.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Upload of swingx-0.9.5-2 from java Net Repo
 ---

 Key: MAVENUPLOAD-2328
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2328
 Project: Maven Upload Requests
  Issue Type: New Feature
Reporter: Alexandre Navarro
Assignee: Carlos Sanchez

 Upload of swingx-0.9.5-2 from java Net Repo from 
 http://download.java.net/maven/2/org/swinglabs/swingx/0.9.5-2/
 Thanks in advance

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2346) Upload appframework and swinghelper-debug

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2346?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2346.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Upload appframework and swinghelper-debug
 -

 Key: MAVENUPLOAD-2346
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2346
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Alexandre Navarro
Assignee: Carlos Sanchez
 Attachments: appframework-1.03-bundle.jar, 
 appframework-1.03-bundle.jar, swinghelper-debug-1.0-bundle.jar


 Alexandre Navarro a contributor of theses 2 projects, contributor on fest and 
 developer on JavaBuilder and SwingJavaBuilder where we need theses jars.
 Alexander Potochkin and Hans Muller (https://swinghelper.dev.java.net/ and 
 https://appframework.dev.java.net/), main developers on theses 2 projects.
 Thanks, upload!

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MNG-4032) Test jar dependency not available for for main classes in multi module builds

2009-02-12 Thread John Casey (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-4032?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

John Casey closed MNG-4032.
---

 Assignee: John Casey
   Resolution: Duplicate
Fix Version/s: 2.1.0

See integration test for MNG-2720. It actually reproduces this exact use case.

http://svn.apache.org/repos/asf/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2720

 Test jar dependency not available for for main classes in multi module builds
 -

 Key: MNG-4032
 URL: http://jira.codehaus.org/browse/MNG-4032
 Project: Maven 2
  Issue Type: Bug
  Components: Bootstrap  Build, Class Loading, Dependencies, 
 Inheritance and Interpolation
Affects Versions: 2.0.9, 2.1.0-M1
 Environment: MacOSX, Linux
Reporter: Henrik Brautaset Aronsen
Assignee: John Casey
 Fix For: 2.1.0

 Attachments: tests-dependency.zip


 I have a module layout like this:
 {noformat}
 root -+- first
   +- second
 {noformat}
 I have the test-jar plugin enabled, thus a *-tests.jar is built for each 
 module.  In the second module, I have defined a dependency to first's tests 
 jar:
 {noformat}
dependency
   groupIdme/groupId
   artifactIdfirst/artifactId
   classifiertests/classifier
   version1.0-SNAPSHOT/version
   scopecompile/scope
/dependency
 {noformat}
 And here's the problem:  A class in the second main folder imports a class 
 from the first test folder.   If I build the second module separately it 
 builds like it should.  But if I build both modules from the root module I 
 get a compilation failure:
 {noformat}
 /.../root/second/src/main/java/me/SecondMain.java:[3,10] cannot find symbol
 symbol  : class FirstTest
 location: package me
 {noformat}
 A class in second's test folder also includes me.FirstTest, and it always 
 compiles.  The scope somehow seems to be overridden when doing multi module 
 builds.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2347) Upload scenario jar

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2347.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Upload scenario jar
 ---

 Key: MAVENUPLOAD-2347
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2347
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Alexandre Navarro
Assignee: Carlos Sanchez
 Attachments: scenario-1.0.1-bundle.jar


 I'm a developer on SwingJavaBuilder and I need this jar (which is in the 
 javafx distribution) for my project.
 I asked on http://forums.sun.com/thread.jspa?threadID=5362457 the upload 
 request but nobody answer me.
 Thanks to upload it.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2323) Upload of FDS-API 1.04

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2323.
---

Resolution: Fixed

 Upload of FDS-API 1.04
 --

 Key: MAVENUPLOAD-2323
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2323
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Edouard Hue
Assignee: Carlos Sanchez
 Attachments: fdsapi-1.0.4-bundle.jar, fdsapi-1.0.4-bundle.jar


 This is not a Maven project. The author (Steve Souza) isn't currently 
 intersted in migrating fdsapi to Maven. This bundle was generated from the 
 1_04 release available at 
 http://sourceforge.net/project/showfiles.php?group_id=87044package_id=90549release_id=317647
  using the repository plugin.
 Thanks for uploading !

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2333) Add rsync to add mydoggy libs in Maven Central Repo

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2333?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2333.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Add rsync to add mydoggy libs in Maven Central Repo
 ---

 Key: MAVENUPLOAD-2333
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2333
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Alexandre Navarro
Assignee: Carlos Sanchez

 Thanks in advance
 Angelo De Caro and Alexandre Navarro

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2341) Upload maven-overview-plugin from googlecode repo

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2341?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2341.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Upload maven-overview-plugin from googlecode repo
 -

 Key: MAVENUPLOAD-2341
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2341
 Project: Maven Upload Requests
  Issue Type: New Feature
Reporter: Hubert Iwaniuk
Assignee: Carlos Sanchez

 I'm maintainer of maven-overview-plugin, please upload.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2337) Synchronize JSignature repository with repo1

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2337.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Synchronize JSignature repository with repo1
 

 Key: MAVENUPLOAD-2337
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2337
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Davide Simonetti
Assignee: Carlos Sanchez

 Hi,
 I'm the owner of the project jsignature at sourceforge.net. I'd like my 
 repository is kept in sync with repo1.
 net.sf.jsignature,mavens...@web.sourceforge.net:/home/groups/j/js/jsignature/htdocs/maven2,rsync_ssh,Simonetti
  Davide,dvd.s...@gmail.com,,
 Best Regards
 Davide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2352) typica-1.5-bundle.jar

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2352.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 typica-1.5-bundle.jar
 -

 Key: MAVENUPLOAD-2352
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2352
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: David Kavanagh
Assignee: Carlos Sanchez
 Attachments: typica-1.5-bundle.jar


 http://code.google.com/p/typica/
 I've attached the bundle since I don't have it posted in maven bundle format 
 for regular download.
 I'm the project owner and would like to submit this new release.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2353) Version 1.7 of JSONTOOLS - Core

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2353.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Version 1.7 of JSONTOOLS - Core
 ---

 Key: MAVENUPLOAD-2353
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2353
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Bruno Ranschaert
Assignee: Carlos Sanchez
 Attachments: jsontools-core-1.7-bundle.jar


 Hi,
 I am a developer of the JSONTOOLS project which is hosted at Berlios.de.
 Could you please install this library in the repsository? 
 All domain names which are used as package names are owned by me.
 Thanks,
 Bruno 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2351) Please upload ICU4J 4.0.1

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2351.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Please upload ICU4J 4.0.1
 -

 Key: MAVENUPLOAD-2351
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2351
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Martin Höller
Assignee: Carlos Sanchez
 Attachments: icu4j-4.0.1-bundle.jar


 An older version is allready in the repository and the pom for this one is 
 based on the old pom.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2325) com.jgoodies-binding-2.0.6 upload request

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2325?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2325.
---

  Assignee: Carlos Sanchez
Resolution: Won't Fix

it is already in the repo

 com.jgoodies-binding-2.0.6 upload request
 -

 Key: MAVENUPLOAD-2325
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2325
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Stefan Prange
Assignee: Carlos Sanchez

 Details on the JGoodies Binding library can be found here:
 http://www.jgoodies.com/downloads/libraries.html or 
 https://binding.dev.java.net
 I am not a developer of this library. I'm sending this request on behalf of 
 Karsten Lentzsch, the main developer of the JGoodies libs, as well as all 
 JGoodies users that use maven as their build system.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2350) JCaptcha 1.0

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2350.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 JCaptcha 1.0
 

 Key: MAVENUPLOAD-2350
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2350
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Antoine Véret
Assignee: Carlos Sanchez

 com.octo.captcha,mavens...@web.sourceforge.net:/home/groups/j/jc/jcaptcha/maven-repo,rsync_ssh,Antoine
  Veret,ave...@octo.com,,

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2355) Upload mime-util library

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2355.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

uploaded under net.sf

 Upload mime-util library
 

 Key: MAVENUPLOAD-2355
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2355
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Davide Simonetti
Assignee: Carlos Sanchez

 Please upload the mime-util library.
 It's an Apache software license project already built with Maven.
 I filed an upload request in their issue control management but at the moment 
 i didn't get any answer.  
 Since i'm not a developer i left the original group id, because in any case i 
 can't prove my ownership. Tell me if you need i change it in 
 net.sf.mime-utils.
 Best regards.
 Davide

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2336) Add Gmock to the list of automatically synced repositories.

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2336.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Add Gmock to the list of automatically synced repositories.
 ---

 Key: MAVENUPLOAD-2336
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2336
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Julien Gagnet
Assignee: Carlos Sanchez

 Could you please add gmock to the list of automatically synced repositories. 
 Gmock is a mocking framework for the Groovy language. Please visit gmock.org 
 for more informations.
 Here are the relevant details:
 org.gmock,rs...@gmock.org:/home/rsync/gmock/releases,rsync_ssh,Julien 
 Gagnet,julien.gag...@gmail.com,,
 Thanks in advance

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2339) rsync for new open source project duineframework.org

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2339.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 rsync for new open source project duineframework.org
 

 Key: MAVENUPLOAD-2339
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2339
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Peter Fennema
Assignee: Carlos Sanchez



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2338) Upload maven-timestamp-plugin 1.0

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2338?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2338.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Upload maven-timestamp-plugin 1.0
 -

 Key: MAVENUPLOAD-2338
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2338
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Antonio Agudo
Assignee: Carlos Sanchez

 Please upload the maven-timestamp-plugin bundle from 
 http://keyboardsamurais.com/projects/maven-timestamp-plugin/ to central 
 repository.
 Thank you very much.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2342) please upload Glazed Lists 1.8.0

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2342?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2342.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 please upload Glazed Lists 1.8.0
 

 Key: MAVENUPLOAD-2342
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2342
 Project: Maven Upload Requests
  Issue Type: Task
Reporter: Holger Brands
Assignee: Carlos Sanchez

 official 1.8 release of Glazed Lists supporting Java JREs = 1.5

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MAVENUPLOAD-2343) jabsorb 1.3 (Java to JavaScript Object Request Broker)

2009-02-12 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165333#action_165333
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2343:
-

please read the instructions 
http://maven.apache.org/guides/mini/guide-central-repository-upload.html

 jabsorb 1.3 (Java to JavaScript Object Request Broker)
 --

 Key: MAVENUPLOAD-2343
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2343
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Roman Kuzmik
 Attachments: jabsorb-1.3.zip


 I am not developer. But we've got the permission form author (Arthur Blake) 
 to submit this request:
 http://groups.google.com/group/jabsorb-user/browse_thread/thread/6bd3a12b8e87b036
 @see http://jabsorb.org/JabsorbContributors
 Bundle URL: http://findnetbook.com/jabsorb/jabsorb-1.3.zip

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Work started: (MNG-3057) properties not expanded in generated POMs when building A/B/C nested projects

2009-02-12 Thread John Casey (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-3057?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Work on MNG-3057 started by John Casey.

 properties not expanded in generated POMs when building A/B/C nested projects
 -

 Key: MNG-3057
 URL: http://jira.codehaus.org/browse/MNG-3057
 Project: Maven 2
  Issue Type: Bug
  Components: Inheritance and Interpolation
Affects Versions: 2.0.7
Reporter: George Armhold
Assignee: John Casey
 Fix For: 2.1.0

 Attachments: example.tar.gz, generated-poms.tar.gz, 
 InstallMojo.java.patch, InstallMojo.java.patch, 
 InstallMojo.quoteReplacement.patch, maven-install-parent.patch

   Original Estimate: 0 minutes
  Remaining Estimate: 0 minutes

 Using Maven version: 2.0.8-SNAPSHOT, svn r547427.
 I checked out and built 2.0.8 because I was interested in Jason van Zyl's 
 patch for MNG-2619- building from the middle pom of a 
 (parent,child,grandchild) heirarchy fails.  The fix works for the most part, 
 but there still seems to be a problem with the poms that get generated during 
 the install goal.  The poms that get installed into .m2/repository do not 
 have properties interpolated.  If I run maven like:
$ mvn install -Dglobal-version=1.0.0
 I get poms with the string ${global-version} embedded in the resulting poms 
 rather than what I specify on the command line (or in settings.xml).  The 
 build works properly aside from this, and if I do mvn help:effective-pom 
 the properties are correctly interpolated.
 I've attached a tarfile with an example A/B/C build structure that exhibits 
 this behavior, as well as the generated poms.
 Many thanks for your attention.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2344) rsync part of the scala-tools.org repository

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2344.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 rsync part of the scala-tools.org repository
 

 Key: MAVENUPLOAD-2344
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2344
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: David Bernard
Assignee: Carlos Sanchez

 Hi,
 I'm the administrator of scala-tools.org, and I would like to mirror part of 
 the repository to central repo.
 org.scala-tools,mavens...@scala-tools.org:/home/mavensync/repo-releases,rsync_ssh,David
  Bernard,,,
 org.scala-lang,mavens...@scala-tools.org:/home/mavensync/repo-releases,rsync_ssh,David
  Bernard,,,
 net.liftweb,mavens...@scala-tools.org:/home/mavensync/repo-releases,rsync_ssh,David
  Bernard,,,
 domain owning :
 scala-tools.org see bottom of http://scala-tools.org/
 liftweb.net I'm the release manager of the lift project  (same Registration 
 contact as scala-tools.org David Pollak the project leader)
 scala-lang.org is own by epfl I didn't own the name but I manage the maven 
 repository for scala ... (http://www.scala-lang.org/node/292)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2345) Please upload JCROM 1.3.2

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2345.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Please upload JCROM 1.3.2
 -

 Key: MAVENUPLOAD-2345
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2345
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Olafur Gauti Gudmundsson
Assignee: Carlos Sanchez

 http://jcrom.googlecode.com/files/jcrom-1.3.2-bundle.jar
 http://jcrom.org (forwards to the google-code page for JCROM)
 http://code.google.com/u/oli.gauti/
 I am the project owner, please upload.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2348) missing metadata

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2348.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 missing metadata
 

 Key: MAVENUPLOAD-2348
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2348
 Project: Maven Upload Requests
  Issue Type: Bug
Reporter: Tim Andersen
Assignee: Carlos Sanchez
 Attachments: Index of _maven2_org_tmatesoft_svn_1.1.0_.htm


 cannot download artifacts because of missing files
 maven-metadata.xml
 sha1 and md5 files are missing also

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2349) pldoc repository automatic sync setup

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2349.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 pldoc repository automatic sync setup
 -

 Key: MAVENUPLOAD-2349
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2349
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Zoltan Farkas
Assignee: Carlos Sanchez

 Documentation Generator for PLSQL code, similar to javadoc.
 contains 2 artifacts: 
 pldoc - the actual generator
 maven-pldoc-plugin - report plugin to generate the doc

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MAVENUPLOAD-2354) Synchronize templateIt repository with repo1

2009-02-12 Thread Carlos Sanchez (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carlos Sanchez closed MAVENUPLOAD-2354.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

 Synchronize templateIt repository with repo1
 

 Key: MAVENUPLOAD-2354
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2354
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Dmitriy Kumshayev
Assignee: Carlos Sanchez

 org.templateit,mavens...@web.sourceforge.net:/home/groups/t/te/templateit/htdocs/m2repo,rsync_ssh,Dmitriy
  Kumshayev,d...@mail.com,,
 Proof of Domain Ownership:
 http://www.networksolutions.com/whois-search/templateit.org

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MAVENUPLOAD-2343) jabsorb 1.3 (Java to JavaScript Object Request Broker)

2009-02-12 Thread Roman Kuzmik (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2343?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Roman Kuzmik updated MAVENUPLOAD-2343:
--

Attachment: jabsorb-1.3-bundle.jar

 jabsorb 1.3 (Java to JavaScript Object Request Broker)
 --

 Key: MAVENUPLOAD-2343
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2343
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Roman Kuzmik
 Attachments: jabsorb-1.3-bundle.jar, jabsorb-1.3.zip


 I am not developer. But we've got the permission form author (Arthur Blake) 
 to submit this request:
 http://groups.google.com/group/jabsorb-user/browse_thread/thread/6bd3a12b8e87b036
 @see http://jabsorb.org/JabsorbContributors
 Bundle URL: http://findnetbook.com/jabsorb/jabsorb-1.3.zip

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MAVENUPLOAD-2343) jabsorb 1.3 (Java to JavaScript Object Request Broker)

2009-02-12 Thread Roman Kuzmik (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165336#action_165336
 ] 

Roman Kuzmik commented on MAVENUPLOAD-2343:
---

bundle repackaged into jabsorb-1.3-bundle.jar

 jabsorb 1.3 (Java to JavaScript Object Request Broker)
 --

 Key: MAVENUPLOAD-2343
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2343
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Roman Kuzmik
 Attachments: jabsorb-1.3-bundle.jar, jabsorb-1.3.zip


 I am not developer. But we've got the permission form author (Arthur Blake) 
 to submit this request:
 http://groups.google.com/group/jabsorb-user/browse_thread/thread/6bd3a12b8e87b036
 @see http://jabsorb.org/JabsorbContributors
 Bundle URL: http://findnetbook.com/jabsorb/jabsorb-1.3.zip

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MNG-4032) Test jar dependency not available for for main classes in multi module builds

2009-02-12 Thread Henrik Brautaset Aronsen (JIRA)

[ 
http://jira.codehaus.org/browse/MNG-4032?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165339#action_165339
 ] 

Henrik Brautaset Aronsen commented on MNG-4032:
---

Thanks for the updates.  As mentioned in the linked issues, this issue is 
fixable by replacing classifiertests/classifier with typetest-jar/type. 
 Just in case anyone else who has this problem sees this issue...

 Test jar dependency not available for for main classes in multi module builds
 -

 Key: MNG-4032
 URL: http://jira.codehaus.org/browse/MNG-4032
 Project: Maven 2
  Issue Type: Bug
  Components: Bootstrap  Build, Class Loading, Dependencies, 
 Inheritance and Interpolation
Affects Versions: 2.0.9, 2.1.0-M1
 Environment: MacOSX, Linux
Reporter: Henrik Brautaset Aronsen
Assignee: John Casey
 Fix For: 2.1.0

 Attachments: tests-dependency.zip


 I have a module layout like this:
 {noformat}
 root -+- first
   +- second
 {noformat}
 I have the test-jar plugin enabled, thus a *-tests.jar is built for each 
 module.  In the second module, I have defined a dependency to first's tests 
 jar:
 {noformat}
dependency
   groupIdme/groupId
   artifactIdfirst/artifactId
   classifiertests/classifier
   version1.0-SNAPSHOT/version
   scopecompile/scope
/dependency
 {noformat}
 And here's the problem:  A class in the second main folder imports a class 
 from the first test folder.   If I build the second module separately it 
 builds like it should.  But if I build both modules from the root module I 
 get a compilation failure:
 {noformat}
 /.../root/second/src/main/java/me/SecondMain.java:[3,10] cannot find symbol
 symbol  : class FirstTest
 location: package me
 {noformat}
 A class in second's test folder also includes me.FirstTest, and it always 
 compiles.  The scope somehow seems to be overridden when doing multi module 
 builds.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MAVENUPLOAD-2334) Upload beansbinding-1.2.1

2009-02-12 Thread Alexandre Navarro (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexandre Navarro updated MAVENUPLOAD-2334:
---

Attachment: beansbinding-1.2.1-bundle.jar

I corrected the groupId
Thanks

 Upload beansbinding-1.2.1
 -

 Key: MAVENUPLOAD-2334
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2334
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Alexandre Navarro
 Attachments: beansbinding-1.2.1-bundle.jar, 
 beansbinding-1.2.1-bundle.jar


 Thanks to upload beansbinding.
 Alexandre Navarro, Brian Beck and Shannon Hickey

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (MNG-4034) dependency version is not inherited from parent dependencyManagement

2009-02-12 Thread Igor Fedorenko (JIRA)
dependency version is not inherited from parent dependencyManagement


 Key: MNG-4034
 URL: http://jira.codehaus.org/browse/MNG-4034
 Project: Maven 2
  Issue Type: Bug
  Components: Inheritance and Interpolation
Affects Versions: 3.0-alpha-1
Reporter: Igor Fedorenko


Dependency version is missing for dependencies defined inside a profile and 
actual version provided in dependencyManagement section of the parent pom. I 
will attach sample (effective) pom shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MNG-4034) dependency version is not inherited from parent dependencyManagement

2009-02-12 Thread Igor Fedorenko (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-4034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Fedorenko updated MNG-4034:


Attachment: effpom.xml

sample effective pom

 dependency version is not inherited from parent dependencyManagement
 

 Key: MNG-4034
 URL: http://jira.codehaus.org/browse/MNG-4034
 Project: Maven 2
  Issue Type: Bug
  Components: Inheritance and Interpolation
Affects Versions: 3.0-alpha-1
Reporter: Igor Fedorenko
 Attachments: effpom.xml


 Dependency version is missing for dependencies defined inside a profile and 
 actual version provided in dependencyManagement section of the parent pom. I 
 will attach sample (effective) pom shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MNG-4034) dependency version is not inherited from parent dependencyManagement

2009-02-12 Thread Shane Isbell (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-4034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shane Isbell updated MNG-4034:
--

Fix Version/s: 3.0-alpha-3

 dependency version is not inherited from parent dependencyManagement
 

 Key: MNG-4034
 URL: http://jira.codehaus.org/browse/MNG-4034
 Project: Maven 2
  Issue Type: Bug
  Components: Inheritance and Interpolation
Affects Versions: 3.0-alpha-1
Reporter: Igor Fedorenko
Assignee: Shane Isbell
 Fix For: 3.0-alpha-3

 Attachments: effpom.xml


 Dependency version is missing for dependencies defined inside a profile and 
 actual version provided in dependencyManagement section of the parent pom. I 
 will attach sample (effective) pom shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (MNG-4035) Cannot find setter nor field in org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 'extractors'

2009-02-12 Thread Igor Fedorenko (JIRA)
Cannot find setter nor field in 
org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
'extractors'
--

 Key: MNG-4035
 URL: http://jira.codehaus.org/browse/MNG-4035
 Project: Maven 2
  Issue Type: Bug
Affects Versions: 3.0-alpha-3
Reporter: Igor Fedorenko


I am trying to build tycho [1] using maven 3.0 from trunk as of today. The 
build fails with the following exception

{noformat}
[ERROR] 
org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
Cannot find setter nor field in 
org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
'extractors'

While building project with id: 
org.codehaus.tycho:maven-osgi-compiler-plugin:maven-plugin:0.3.0-SNAPSHOT
Project File: /workspaces/tycho-dev/tycho/maven-osgi-compiler-plugin/pom.xml

Error stacktrace:
org.apache.maven.lifecycle.LifecycleExecutionException: 
org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
Cannot find setter nor field in 
org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
'extractors'
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:527)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:258)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:200)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:163)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:207)
at 
org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:881)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:167)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:62)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:408)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:351)
Caused by: org.apache.maven.plugin.PluginConfigurationException: 
org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
Cannot find setter nor field in 
org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
'extractors'
at 
org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1074)
at 
org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:880)
at 
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:584)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:491)
... 15 more
Caused by: 
org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
Cannot find setter nor field in 
org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
'extractors'
at 
org.codehaus.plexus.component.configurator.converters.ComponentValueSetter.init(ComponentValueSetter.java:85)
at 
org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter.processConfiguration(ObjectWithFieldsConverter.java:138)
at 
org.codehaus.plexus.component.configurator.BasicComponentConfigurator.configureComponent(BasicComponentConfigurator.java:58)
at 
org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1068)
... 18 more

{noformat}

I am using the following command to build tycho

/tmp/apache-maven-3.0-SNAPSHOT/bin/mvn -e install


[1] http://svn.sonatype.org/m2eclipse/tycho/trunk

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MNG-4035) Cannot find setter nor field in org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 'extractors'

2009-02-12 Thread Shane Isbell (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-4035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shane Isbell updated MNG-4035:
--

Fix Version/s: 3.0-alpha-3

 Cannot find setter nor field in 
 org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
 'extractors'
 --

 Key: MNG-4035
 URL: http://jira.codehaus.org/browse/MNG-4035
 Project: Maven 2
  Issue Type: Bug
Affects Versions: 3.0-alpha-3
Reporter: Igor Fedorenko
Assignee: Shane Isbell
 Fix For: 3.0-alpha-3


 I am trying to build tycho [1] using maven 3.0 from trunk as of today. The 
 build fails with the following exception
 {noformat}
 [ERROR] 
 org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
 Cannot find setter nor field in 
 org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
 'extractors'
 While building project with id: 
 org.codehaus.tycho:maven-osgi-compiler-plugin:maven-plugin:0.3.0-SNAPSHOT
 Project File: /workspaces/tycho-dev/tycho/maven-osgi-compiler-plugin/pom.xml
 Error stacktrace:
 org.apache.maven.lifecycle.LifecycleExecutionException: 
 org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
 Cannot find setter nor field in 
 org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
 'extractors'
   at 
 org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:527)
   at 
 org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:258)
   at 
 org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:200)
   at 
 org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:163)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:207)
   at 
 org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:881)
   at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:167)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:62)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:597)
   at 
 org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
   at 
 org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
   at 
 org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:408)
   at 
 org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:351)
 Caused by: org.apache.maven.plugin.PluginConfigurationException: 
 org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
 Cannot find setter nor field in 
 org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
 'extractors'
   at 
 org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1074)
   at 
 org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:880)
   at 
 org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:584)
   at 
 org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:491)
   ... 15 more
 Caused by: 
 org.codehaus.plexus.component.configurator.ComponentConfigurationException: 
 Cannot find setter nor field in 
 org.apache.maven.plugin.plugin.metadata.AddPluginArtifactMetadataMojo for 
 'extractors'
   at 
 org.codehaus.plexus.component.configurator.converters.ComponentValueSetter.init(ComponentValueSetter.java:85)
   at 
 org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter.processConfiguration(ObjectWithFieldsConverter.java:138)
   at 
 org.codehaus.plexus.component.configurator.BasicComponentConfigurator.configureComponent(BasicComponentConfigurator.java:58)
   at 
 org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1068)
   ... 18 more
 {noformat}
 I am using the following command to build tycho
 /tmp/apache-maven-3.0-SNAPSHOT/bin/mvn -e install
 [1] http://svn.sonatype.org/m2eclipse/tycho/trunk

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MNG-3763) Site / Dependency / Classifier Issue

2009-02-12 Thread M. Hansen (JIRA)

[ 
http://jira.codehaus.org/browse/MNG-3763?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=165365#action_165365
 ] 

M. Hansen commented on MNG-3763:


Yes, I see this problem as well. We have a bamboo server doing 'mvn clean 
deploy site:site site:deploy' for most of our builds. Our builds are 
multi-projects (ear with war, ejb and some jars). In a couple of cases we have 
jar X that produces both a jar and a test-jar. If another jar Y has 
dependencies to X's test-jar and jar then the EAR will include X's test-jar and 
not the jar version of X.

 Site / Dependency / Classifier Issue
 

 Key: MNG-3763
 URL: http://jira.codehaus.org/browse/MNG-3763
 Project: Maven 2
  Issue Type: Bug
  Components: Dependencies
Affects Versions: 2.0.9, 2.1.0-M1
 Environment: Maven 2.0.9, Maven 2.1.0-M1, Windows, CentOS
Reporter: Geoffrey Wiseman
 Fix For: 2.0.x

 Attachments: dependency-site-bug.zip


 When the attached project is run with mvn clean install it's successful.  
 When mvn clean install site is run, the build fails to compile.  Seems like 
 it's a bug, not sure where the bug lies.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (MNG-4033) Introduce 2.1.x password encryption to the trunk

2009-02-12 Thread Oleg Gusakov (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-4033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Oleg Gusakov closed MNG-4033.
-

 Assignee: Oleg Gusakov
   Resolution: Fixed
Fix Version/s: 3.0-alpha-3

commited, ITs pass

 Introduce 2.1.x password encryption to the trunk
 

 Key: MNG-4033
 URL: http://jira.codehaus.org/browse/MNG-4033
 Project: Maven 2
  Issue Type: New Feature
  Components: Settings
Affects Versions: 3.0-alpha-2
Reporter: Oleg Gusakov
Assignee: Oleg Gusakov
 Fix For: 3.0-alpha-3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (MRELEASE-412) release:prepare does not update properties during rewrite-poms-for-development phase.

2009-02-12 Thread Christian Schulte (JIRA)
release:prepare does not update properties during rewrite-poms-for-development 
phase.
-

 Key: MRELEASE-412
 URL: http://jira.codehaus.org/browse/MRELEASE-412
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-8
 Environment: Maven version: 2.0.10-RC8
Java version: 1.5.0_14
OS name: linux version: 2.6.28.4 arch: i386 Family: unix

Reporter: Christian Schulte
Priority: Blocker


When a dependency version is specified using a property like ${someExpression} 
that property is correctly updated during the rewrite-poms-for-release phase 
but not during the rewrite-poms-for-development phase. The attached patch 
solves this for me.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (MRELEASE-412) release:prepare does not update properties during rewrite-poms-for-development phase.

2009-02-12 Thread Christian Schulte (JIRA)

 [ 
http://jira.codehaus.org/browse/MRELEASE-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Schulte updated MRELEASE-412:
---

Attachment: MRELEASE-412.patch

Patch for updating properties during the rewrite-poms-for-development phase.

 release:prepare does not update properties during 
 rewrite-poms-for-development phase.
 -

 Key: MRELEASE-412
 URL: http://jira.codehaus.org/browse/MRELEASE-412
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-8
 Environment: Maven version: 2.0.10-RC8
 Java version: 1.5.0_14
 OS name: linux version: 2.6.28.4 arch: i386 Family: unix
Reporter: Christian Schulte
Priority: Blocker
 Attachments: MRELEASE-412.patch


 When a dependency version is specified using a property like 
 ${someExpression} that property is correctly updated during the 
 rewrite-poms-for-release phase but not during the 
 rewrite-poms-for-development phase. The attached patch solves this for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Reopened: (MAVENUPLOAD-2354) Synchronize templateIt repository with repo1

2009-02-12 Thread Dmitriy Kumshayev (JIRA)

 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitriy Kumshayev reopened MAVENUPLOAD-2354:



I apologize for the typo,

Could you please change group id from org.templateit to org.templateIt  ( 
capitalize the last i ) 


Regards,
Dmitriy Kumshayev

 Synchronize templateIt repository with repo1
 

 Key: MAVENUPLOAD-2354
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2354
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Dmitriy Kumshayev
Assignee: Carlos Sanchez

 org.templateit,mavens...@web.sourceforge.net:/home/groups/t/te/templateit/htdocs/m2repo,rsync_ssh,Dmitriy
  Kumshayev,d...@mail.com,,
 Proof of Domain Ownership:
 http://www.networksolutions.com/whois-search/templateit.org

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira