[jira] Commented: (MNG-624) automatic parent versioning

2009-09-18 Thread Stephen Connolly (JIRA)

[ 
http://jira.codehaus.org/browse/MNG-624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191423#action_191423
 ] 

Stephen Connolly commented on MNG-624:
--

mvn -N versions:set -DnewVersion=

or mvn versions:update-parent

or mvn -N versions:update-child-modules

can all help updating the parent versions

> automatic parent versioning
> ---
>
> Key: MNG-624
> URL: http://jira.codehaus.org/browse/MNG-624
> Project: Maven 2
>  Issue Type: Improvement
>  Components: Inheritance and Interpolation
>Reporter: Brett Porter
>Assignee: Ralph Goers
>Priority: Blocker
> Fix For: 2.x
>
> Attachments: MNG-624-maven-2.0.x-r507648.patch, MNG-624-tests.tar.gz
>
>   Original Estimate: 4 hours
>  Remaining Estimate: 4 hours
>
> (this may be bumped to 2.1 or even made WON't FIX as it is contentious - see 
> MNG-521)
> currently, you have to specify the parent version when extending which makes 
> a project stand alone very easily, but has the drawback of being a 
> maintainance problem when you start development on a new version. Tools can 
> help, but it would be nice not to have to rely on them.
> One alternative is to allow the parent version to be omitted, and when it is 
> it is assumed you want the latest. The parent is used from the reactor or the 
> universal source directory. IT may also be read from a LATEST in the 
> repository though this is contentious - it may be better to simply fail in 
> that environment and require builds be in a known checkout structure for 
> building individual projects.
> This also introduces the need for tool support to populate the version on 
> release and deployment for reproducibility.

-- 
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: (MJAVADOC-253) Http proxy does not work any more

2009-09-18 Thread Vincent Siveton (JIRA)

[ 
http://jira.codehaus.org/browse/MJAVADOC-253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191429#action_191429
 ] 

Vincent Siveton commented on MJAVADOC-253:
--

I bet that you are using an isaproxy which asks for NTLM authentication. IIRC 
httpclient supports NTLMv1, not NTLMv2.
Since I have no proxy there, could you please try to provide a patch?

> Http proxy does not work any more
> -
>
> Key: MJAVADOC-253
> URL: http://jira.codehaus.org/browse/MJAVADOC-253
> Project: Maven 2.x Javadoc Plugin
>  Issue Type: Bug
>Affects Versions: 2.6
> Environment: Maven 2.0.9
> JDK5 (Sun)
>Reporter: Mohan K
>Priority: Critical
>
> It appears the update of Wagon Provider in 2.6 is not compatible with Maven 
> 2.0.x. Here is the
> email snippet as posted to maven users group (no responses)
> I am using Maven 2.0.9 and maven-javadoc-plugin 2.6. I have the "links" 
> configured in my
> plugin config. Now all resolution of external links fail (we are behind a 
> proxy *not* NTLM)
> with this:
> Aug 12, 2009 12:02:31 AM 
> org.apache.commons.httpclient.auth.AuthChallengeProcessor selectAuthScheme
> INFO: ntlm authentication scheme selected
> Aug 12, 2009 12:02:31 AM org.apache.commons.httpclient.HttpMethodDirector 
> authenticate
> The wagon provider appears to have been upgraded to 1.0-beta-6 in the 
> maven-javadoc-plugin 2.6
> (as opposed to 1.0-beta-2 in 2.5). I seem to remember that (maybe it is 
> wrong) that wagon 1.0-beta-6
> requires Maven 2.1.x and above? If that is the case, I don't understand how 
> the plugin was released with
> prerequisite of 2.0.9? 
> Is there a workaround to disable the default ntlm auth scheme via a magical 
> system property? TIA 

-- 
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: (MJAVADOC-253) Http proxy does not work any more

2009-09-18 Thread Vincent Siveton (JIRA)

[ 
http://jira.codehaus.org/browse/MJAVADOC-253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191430#action_191430
 ] 

Vincent Siveton commented on MJAVADOC-253:
--

Also, a workaround could be to use additionalJOption, ie
{noformat}

  -J-Dhttp.proxySet=true 
-J-Dhttp.proxyHost=proxy.somewhere.com -J-Dhttp.proxyPort=3128 
-J-Dhttp.nonProxyHosts="java.sun.com|*.somewhere.com" \
-J-Dhttp.proxyUser="foo" -J-Dhttp.proxyPassword="bar" 
  ...

{noformat}

> Http proxy does not work any more
> -
>
> Key: MJAVADOC-253
> URL: http://jira.codehaus.org/browse/MJAVADOC-253
> Project: Maven 2.x Javadoc Plugin
>  Issue Type: Bug
>Affects Versions: 2.6
> Environment: Maven 2.0.9
> JDK5 (Sun)
>Reporter: Mohan K
>Priority: Critical
>
> It appears the update of Wagon Provider in 2.6 is not compatible with Maven 
> 2.0.x. Here is the
> email snippet as posted to maven users group (no responses)
> I am using Maven 2.0.9 and maven-javadoc-plugin 2.6. I have the "links" 
> configured in my
> plugin config. Now all resolution of external links fail (we are behind a 
> proxy *not* NTLM)
> with this:
> Aug 12, 2009 12:02:31 AM 
> org.apache.commons.httpclient.auth.AuthChallengeProcessor selectAuthScheme
> INFO: ntlm authentication scheme selected
> Aug 12, 2009 12:02:31 AM org.apache.commons.httpclient.HttpMethodDirector 
> authenticate
> The wagon provider appears to have been upgraded to 1.0-beta-6 in the 
> maven-javadoc-plugin 2.6
> (as opposed to 1.0-beta-2 in 2.5). I seem to remember that (maybe it is 
> wrong) that wagon 1.0-beta-6
> requires Maven 2.1.x and above? If that is the case, I don't understand how 
> the plugin was released with
> prerequisite of 2.0.9? 
> Is there a workaround to disable the default ntlm auth scheme via a magical 
> system property? TIA 

-- 
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: (MJAVADOC-264) mvn clean install site doesn't work

2009-09-18 Thread Vincent Siveton (JIRA)

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

Vincent Siveton closed MJAVADOC-264.


Resolution: Duplicate

Maven issue, see MJAVADOC-116

> mvn clean install site doesn't work
> ---
>
> Key: MJAVADOC-264
> URL: http://jira.codehaus.org/browse/MJAVADOC-264
> Project: Maven 2.x Javadoc Plugin
>  Issue Type: Bug
>Affects Versions: 2.5, 2.6
>Reporter: Arnaud Brunet
> Attachments: build.log, myTest.zip
>
>
> Hi,
> I tried to generate a maven site for a projet with multiple modules using 
> maven-javadoc-plugin in version 2.6. But i got this error :
> {quote}
> [INFO] 
> 
> [ERROR] BUILD ERROR
> [INFO] 
> 
> [INFO] Failed to resolve artifact.
> Missing:
> --
> 1) mygroup:myartifact:jar:1.0-SNAPSHOT
>   Try downloading the file manually from the project website.
>   Then, install it using the command:
>   mvn install:install-file -DgroupId=mygroup -DartifactId=myartifact 
> -Dversion=1.0-SNAPSHOT -Dpa
> ckaging=jar -Dfile=/path/to/file
>   Alternatively, if you host your own repository you can deploy the file 
> there:
>   mvn deploy:deploy-file -DgroupId=mygroup -DartifactId=myartifact 
> -Dversion=1.0-SNAPSHOT -Dpack
> aging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>   Path to dependency:
> 1) mygroup:moduleA:jar:1.0-SNAPSHOT
> 2) mygroup:myartifact:jar:1.0-SNAPSHOT
> {quote}
> I tried downgrade to 2.5 but I had always the error. With the 2.4 version, it 
> works.
> I attach a test projet. Before each build, you must delete mygroup directory 
> in your maven repository.

-- 
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-4343) maven always checks missing release artifacts

2009-09-18 Thread Benjamin Bentmann (JIRA)

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

Benjamin Bentmann closed MNG-4343.
--

 Assignee: Benjamin Bentmann
   Resolution: Fixed
Fix Version/s: 3.0-alpha-3

Improved in [r816563|http://svn.apache.org/viewvc?view=rev&revision=816563].

> maven always checks missing release artifacts
> -
>
> Key: MNG-4343
> URL: http://jira.codehaus.org/browse/MNG-4343
> Project: Maven 2
>  Issue Type: Bug
>  Components: Artifacts and Repositories
>Affects Versions: 3.0
>Reporter: Igor Fedorenko
>Assignee: Benjamin Bentmann
> Fix For: 3.0-alpha-3
>
>
> As I tried to explain in MARTIFACT-25, maven always checks for missing 
> release artifacts and even though this does not have noticeable performance 
> impact on regular maven cli builds (unless, -fn, I guess), this does cause 
> significant performance problems in embedding applications like m2e in some 
> scenarios.
> To demonstrate the problem, I've added new (and currently disable) 
> testResolveMissingArtifact to P001EmbedderTest performance regression test 
> suite. On my development machine, running 
> doTestResolveMissingArtifact(delay=false) takes ~2ms on average. Running 
> doTestResolveMissingArtifact(delay=true), on the other hand, takes ~202ms, 
> which means that remote repository is accessed twice during each 
> doTestResolveMissingArtifact(delay=true) call.
> https://svn.sonatype.org/m2eclipse/sandbox/trunk/maven-performance-tests/src/test/java/org/apache/maven/performance/tests/p001/P001EmbedderTest.java

-- 
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: (MAVENUPLOAD-2605) rsync_ssh request for jlue.sourceforge.net

2009-09-18 Thread jlue (JIRA)
rsync_ssh request for jlue.sourceforge.net
--

 Key: MAVENUPLOAD-2605
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2605
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: jlue


"net.sf.jlue","mavens...@shell.sourceforge.net:/home/groups/j/jl/jlue/htdocs/m2repo","rsync_ssh","jlue","sun...@gmail.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] Commented: (MAVENUPLOAD-2598) Rsync for MySQL Connector/J broken somewhere

2009-09-18 Thread Clemens Fuchslocher (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191459#action_191459
 ] 

Clemens Fuchslocher commented on MAVENUPLOAD-2598:
--

I found this 
http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/200809.mbox/%3c1a5b6c410809080513v28ec6249vc3f3bb1601f25...@mail.gmail.com%3e
 mail on the repo-maintainers mailing list 
(http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/): "mysql and 
com.exadel.flamingo syncs have been removed due to permanent failure".

http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/200808.mbox/%3c19456522.01220003190581.javamail.ma...@sonatype03.managed.contegix.com%3e

http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/200809.mbox/%3c23105029.01220560663009.javamail.ma...@sonatype03.managed.contegix.com%3e

http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/200809.mbox/%3c19456522.01220607929920.javamail.ma...@sonatype03.managed.contegix.com%3e

Are the following settings still correct and working?

"mysql","ma...@rsync.mysql.com:/web/sites/live/maven/mysql","rsync_ssh","Mark 
Matthews","m...@mysql.com",,

Details are described in "Sync'ing your own repository to the central 
repository automatically" 
(http://maven.apache.org/guides/mini/guide-central-repository-upload.html#Syncing_your_own_repository_to_the_central_repository_automatically).


> Rsync for MySQL Connector/J broken somewhere
> 
>
> Key: MAVENUPLOAD-2598
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2598
> Project: Maven Upload Requests
>  Issue Type: Bug
>Reporter: Mark Matthews
>
> It seems that the rsync of the bundles that we (MySQL) put up to be 
> synchronized into the repository has broken somewhere. Are you receiving 
> errors on your end?

-- 
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: (MPMD-107) Making includes and excludes overwritable through a maven property

2009-09-18 Thread Volker Fuessler (JIRA)

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

Volker Fuessler updated MPMD-107:
-

Attachment: MPMD-107.patch

Patch that adds maven properties for in- and exclude patterns

> Making includes and excludes overwritable through a maven property
> --
>
> Key: MPMD-107
> URL: http://jira.codehaus.org/browse/MPMD-107
> Project: Maven 2.x PMD Plugin
>  Issue Type: New Feature
>Reporter: Volker Fuessler
>Priority: Minor
> Attachments: MPMD-107.patch
>
>
> If you work with maven projects it is usefull to configure common things like 
> plugins, dependencies, company information,... in a parent pom. So, in my 
> case, we have 1 parent pom in our company, from which every project has to 
> inherit. 
> In most cases that's it, no other configurations must be made, but sometimes 
> you have to overwrite some includes or excludes of a plugin. In this case you 
> have to overwrite the whole plugin in the projects pom.
> I think, it would be very usefull, if there would be a possibility to 
> overwrite includes and excludes just by using a simple maven property which 
> takes a string with comma separated patterns that should be in- or excluded.
> I patched the plugin but I thought this could be usefull for other people, so 
> I will add an patch here. 
> The patch adds the following properties, which can be used in a maven 
>  section:
> maven.pmd.includesList
> maven.pmd.excludesList
> example:
> ...
> 
> **/some/package/**/*.java, 
> **/generated-sources/**/*.java
> ...
> 
> ...

-- 
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: (MPMD-107) Making includes and excludes overwritable through a maven property

2009-09-18 Thread Volker Fuessler (JIRA)
Making includes and excludes overwritable through a maven property
--

 Key: MPMD-107
 URL: http://jira.codehaus.org/browse/MPMD-107
 Project: Maven 2.x PMD Plugin
  Issue Type: New Feature
Reporter: Volker Fuessler
Priority: Minor


If you work with maven projects it is usefull to configure common things like 
plugins, dependencies, company information,... in a parent pom. So, in my case, 
we have 1 parent pom in our company, from which every project has to inherit. 
In most cases that's it, no other configurations must be made, but sometimes 
you have to overwrite some includes or excludes of a plugin. In this case you 
have to overwrite the whole plugin in the projects pom.

I think, it would be very usefull, if there would be a possibility to overwrite 
includes and excludes just by using a simple maven property which takes a 
string with comma separated patterns that should be in- or excluded.

I patched the plugin but I thought this could be usefull for other people, so I 
will add an patch here. 
The patch adds the following properties, which can be used in a maven 
 section:

maven.pmd.includesList
maven.pmd.excludesList


example:

...

**/some/package/**/*.java, 
**/generated-sources/**/*.java
...

...




-- 
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-2598) Rsync for MySQL Connector/J broken somewhere

2009-09-18 Thread Mark Matthews (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191466#action_191466
 ] 

Mark Matthews commented on MAVENUPLOAD-2598:


Clemens,

I checked with Carlos in #maven, and something did change on our end (chasing 
that down).

However, I never did receive a notice that there were failures in rsync. Maybe 
it'd be wise to add that step to the process one takes before removing a host, 
especially given that there's a contact point in the list of mirrors to sync 
from?

> Rsync for MySQL Connector/J broken somewhere
> 
>
> Key: MAVENUPLOAD-2598
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2598
> Project: Maven Upload Requests
>  Issue Type: Bug
>Reporter: Mark Matthews
>
> It seems that the rsync of the bundles that we (MySQL) put up to be 
> synchronized into the repository has broken somewhere. Are you receiving 
> errors on your end?

-- 
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-624) automatic parent versioning

2009-09-18 Thread JIRA

[ 
http://jira.codehaus.org/browse/MNG-624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191472#action_191472
 ] 

Hans-Peter Störr commented on MNG-624:
--

The problem is not so much that updating the poms is difficult, but rather that 
changing the poms has some quite annoying consequences. So I wish to strongly 
support the plea to remove the unnecessary requirement to put the parent 
version number into all poms.

This restriction can make quite some trouble with version control systems. At 
least it did in our projects.  The reason of the trouble is that you need to 
check in a new version of the pom each time the version number changes - even 
if absolutely nothing changes about the way to build the system. Over time you 
have loads of versions checked in and it is hard to tell when there were actual 
changes in the pom, or just a checkin because of a version number change. When 
merging releases you have trouble, since there are loads of pom changes all 
over the place but it is hard to tell where something actually changed. In our 
particular setting this is even more annoying than this sounds, but this is a 
long story.

How would you feel if a strange compiler required you to put the current 
version number into each and every file? Maven actually does this - after all a 
pom is a kind source code describing the way to build the system. 8-/
It is up to you if you want to do this for some reason, but it is not good to 
force everyone to do it.

> automatic parent versioning
> ---
>
> Key: MNG-624
> URL: http://jira.codehaus.org/browse/MNG-624
> Project: Maven 2
>  Issue Type: Improvement
>  Components: Inheritance and Interpolation
>Reporter: Brett Porter
>Assignee: Ralph Goers
>Priority: Blocker
> Fix For: 2.x
>
> Attachments: MNG-624-maven-2.0.x-r507648.patch, MNG-624-tests.tar.gz
>
>   Original Estimate: 4 hours
>  Remaining Estimate: 4 hours
>
> (this may be bumped to 2.1 or even made WON't FIX as it is contentious - see 
> MNG-521)
> currently, you have to specify the parent version when extending which makes 
> a project stand alone very easily, but has the drawback of being a 
> maintainance problem when you start development on a new version. Tools can 
> help, but it would be nice not to have to rely on them.
> One alternative is to allow the parent version to be omitted, and when it is 
> it is assumed you want the latest. The parent is used from the reactor or the 
> universal source directory. IT may also be read from a LATEST in the 
> repository though this is contentious - it may be better to simply fail in 
> that environment and require builds be in a known checkout structure for 
> building individual projects.
> This also introduces the need for tool support to populate the version on 
> release and deployment for reproducibility.

-- 
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: (MJARSIGNER-7) jarsigner plugin to support all "types" of zip files

2009-09-18 Thread Martin Scholl (JIRA)
jarsigner plugin to support all "types" of zip files


 Key: MJARSIGNER-7
 URL: http://jira.codehaus.org/browse/MJARSIGNER-7
 Project: Maven 2.x Jar Signer Plugin
  Issue Type: Wish
Affects Versions: 1.1
 Environment: all
Reporter: Martin Scholl
Priority: Minor


It would be great if the jarsigner plugin was able to sign all zip files, not 
only those which contain a META-INF folder and/or jar files as the jarsigner 
command line tool is not limited to "real" jar files. The META-INF folder is 
created anyway by the jarsigner tool.

My usecase is that I have some projects that create attached zip assemblies and 
I would like to sign them, too. I don't want to use e.g. an additional ant task 
attached to the verification phase, as the signing should be done automatically 
imho. And I don't want to use "external" signing tools like gpg as it requires 
a manual installation of that tool whereas the jarsigner is always present (in 
a JDK).

Simply replace the isJarFile method like that or similar:

private boolean isZipFile( final File file )
{
try
{
// NOTE: ZipFile.getEntry() might be shorter but is several factors 
slower on large files

ZipInputStream zis = new ZipInputStream( new FileInputStream( file 
) );
try
{
return zis.available() == 1;
}
finally
{
zis.close();
}
}
catch ( Exception e )
{
// ignore, will fail below
}

return false;
}



-- 
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-2598) Rsync for MySQL Connector/J broken somewhere

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191487#action_191487
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2598:
-

Mark, you are in the to: of all the status mails where there's a mysql failure 
(mark at mysql.com)

ie.
http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/200808.mbox/raw/%3c19456522.01219988570237.javamail.ma...@sonatype03.managed.contegix.com%3e

> Rsync for MySQL Connector/J broken somewhere
> 
>
> Key: MAVENUPLOAD-2598
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2598
> Project: Maven Upload Requests
>  Issue Type: Bug
>Reporter: Mark Matthews
>
> It seems that the rsync of the bundles that we (MySQL) put up to be 
> synchronized into the repository has broken somewhere. Are you receiving 
> errors on your end?

-- 
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-2599) JTidy: Old version on the maven repository

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2599.
---

  Assignee: Carlos Sanchez
Resolution: Incomplete

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

> JTidy: Old version on the maven repository
> --
>
> Key: MAVENUPLOAD-2599
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2599
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Santiago Vazquez
>Assignee: Carlos Sanchez
>
> Please upload the new version of jtidy!
> http://jtidy.sourceforge.net
> http://sourceforge.net/projects/jtidy/files/JTidy/r820/jtidy-r820.jar/download

-- 
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-2575) I am DynamicJasper's project leader, please upload.

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191489#action_191489
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2575:
-

Please read 
http://maven.apache.org/guides/mini/guide-central-repository-upload.html and 
setup an automatic repository sync to avoid manual uploads

> I am DynamicJasper's project leader, please upload.
> ---
>
> Key: MAVENUPLOAD-2575
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2575
> Project: Maven Upload Requests
>  Issue Type: Task
>Reporter: Juan Manuel Alvarez
>
> I am DynamicJasper's project leader, please upload.
> DynamicJasper (DJ) is an API that hides the complexity of Jasper Reports, it 
> helps developers to save time when designing simple/medium complexity reports 
> generating the layout of the report elements automatically. It creates 
> reports dynamically, defining at runtime the columns, column width (auto 
> width), groups, variables, fonts, charts, crosstabs, sub reports (that can 
> also be dynamic), page size and everything else that you can define at design 
> time.

-- 
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-2574) rsync_ssh request for mikha-web-utils.sourceforge.net

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2574.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> rsync_ssh request for mikha-web-utils.sourceforge.net
> -
>
> Key: MAVENUPLOAD-2574
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2574
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Dmitry Mikaylov
>Assignee: Carlos Sanchez
>
> "net.sourceforge.mikha-web-utils","mavens...@web.sourceforge.net:/home/groups/m/mi/mikha-web-utils/htdocs/maven","rsync_ssh","Dmitry
>  Mikhaylov","mikhailov.dmi...@gmail.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-2573) Automatic repository sync request for new project: jbosh

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2573.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Automatic repository sync request for new project: jbosh
> 
>
> Key: MAVENUPLOAD-2573
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2573
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Mike Cumings
>Assignee: Carlos Sanchez
>
> Please add the following automatic repository sync to the maven central repo. 
>  This is a Kenai project and does not (yet?) have the ability to rsync, but I 
> saw an existing Kenai project and used it's CSV values as a template:
> "com.kenai.jbosh","/home/maven/repository-staging/to-ibiblio/maven-svn","svn","Mike
>  Cumings","maven...@scummer.org",,"https://kenai.com/svn/jbosh~maven/release";
> For potential review expedience, here is a link to the POM for verification 
> of required elements:
> http://kenai.com/svn/jbosh~maven/release/com/kenai/jbosh/jbosh/0.5.0/jbosh-0.5.0.pom
> Thanks in advance,
> Mike

-- 
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-2578) Sync with datanucleus M2 repo

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2578.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Sync with datanucleus M2 repo
> -
>
> Key: MAVENUPLOAD-2578
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2578
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Data Nucleus
>Assignee: Carlos Sanchez
>
> "org.datanucleus","j...@www.datanucleus.org:/home/jpox/htdocs/downloads/maven2","rsync_ssh","Andy
>  Jefferson","i...@datanucleus.org",,
> The domain is obviously mine, registered under my name.
> I put the Maven public key into the user "jpox" "$home/.ssh/authorized_keys"
> Left as an exercise to see if that works

-- 
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-2576) lzma-java 1.0 upload request

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2576?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191490#action_191490
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2576:
-

you need a fully qualified groupId like com.github.jponge

> lzma-java 1.0 upload request
> 
>
> Key: MAVENUPLOAD-2576
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2576
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Julien Ponge
>
> http://cloud.github.com/downloads/jponge/lzma-java/lzma-java-1.0-bundle.jar
> http://github.com/jponge/lzma-java/tree
> I guys, I developed this small LZMA compression library around the Java LZMA 
> SDK. Thanks for considering uploading 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] Commented: (MAVENUPLOAD-2580) rsync Objenesis to maven central repository

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191491#action_191491
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2580:
-

do you own objenesis.org?

> rsync Objenesis to maven central repository
> ---
>
> Key: MAVENUPLOAD-2580
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2580
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Henri Tremblay
>
> Please configure the rsync for Objenesis which is deployed in the easymock 
> repository.
> The rsync line:
> "org.objenesis","mavens...@shell.sourceforge.net:/home/groups/e/ea/easymock/htdocs/maven/repository","rsync_ssh","Henri
>  Tremblay","henri.tremb...@gmail.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-2566) Syncing OpenFaces repository with the central repository

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2566.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Syncing OpenFaces repository with the central repository
> 
>
> Key: MAVENUPLOAD-2566
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2566
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Darya Shumilina
>Assignee: Carlos Sanchez
>
> "org.openfaces", "ma...@sshrepo.openfaces.org:/home/tomcat/.m2", "rsync_ssh", 
> "Darya Shumilina", "darya.shumil...@teamdev.com"
> I'm a developer in OpenFaces, please synchronize our repository with the 
> central repository.
> Is any additional information required for that?

-- 
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-2581) Upload Jazzmaster 1.2.0 to the Central Repository

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2581.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Upload Jazzmaster 1.2.0 to the Central Repository
> -
>
> Key: MAVENUPLOAD-2581
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2581
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Eiichiro Uchiumi
>Assignee: Carlos Sanchez
>
> http://jazzmaster.googlecode.com/files/jazzmaster-1.2.0-bundle.jar
> http://code.google.com/p/jazzmaster/
> http://www.eiichiro.org/
> I'm a developer in Jazzmaster, 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] Commented: (MAVENUPLOAD-2571) Please sync with my repo

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191492#action_191492
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2571:
-

you need to remove the snapshots from your repo

> Please sync with my repo
> 
>
> Key: MAVENUPLOAD-2571
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2571
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Mario Fusco
>
> I'm Mario Fusco, lead developer of lambdaj (lambdaj.googlecode.com) and I 
> want to sync my repo to the Central Maven Repo.
> "com.googlecode.lambdaj","/home/maven/repository-staging/to-ibiblio/maven-svn","svn","Mario
>  
> Fusco","mario.fu...@gmail.com",,"http://lambdaj.googlecode.com/svn/repo/releases/";
> Thanks. 

-- 
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-2562) Upload of sectorjni artifact

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2562?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191493#action_191493
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2562:
-

still, pom is missing required info

> Upload of sectorjni artifact
> 
>
> Key: MAVENUPLOAD-2562
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2562
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Jonathan Seidman
>
> http://cloud-interop.googlecode.com/files/sectorjni-v0.3-bundle.jar
> http://code.google.com/p/cloud-interop/wiki/SectorJNI
> I'm a developer on the SectorJNI project, which I'd like to have uploaded to 
> the maven repo. Sector JNI was developed by Open Data Group 
> (opendatagroup.com) and contributed to the Sector project (sector.sf.net).
> Thanks!

-- 
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-2572) upload new version 0.8.90 of tango-icon-theme, note license and groupId have changed

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191494#action_191494
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2572:
-

groupId should be org.freedesktop.tango

> upload new version 0.8.90 of tango-icon-theme, note license and groupId have 
> changed
> 
>
> Key: MAVENUPLOAD-2572
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2572
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Michael Heuer
>
> The Tango Desktop Project exists to help create a consistent graphical user 
> interface experience for free and Open Source software. 
> The Tango icon theme is a basic set of desktop icons that follow the style 
> guidelines. The set has been created as a proof of concept for the style, but 
> works rather well as a replacement for the base theme under GNOME and KDE.

-- 
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-2567) Java Native Access (JNA) 3.2.1 upload

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2567.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

got it from dev.java.net and removed the repositories sections

> Java Native Access (JNA) 3.2.1 upload
> -
>
> Key: MAVENUPLOAD-2567
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2567
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Ahmed Ashour
>Assignee: Carlos Sanchez
>
> JNA provides Java programs easy access to native shared libraries (DLLs on 
> Windows) without writing anything but Java code no JNI or native code is 
> required.
> This functionality is comparable to Windows' Platform/Invoke and Python's 
> ctypes. Access is dynamic at runtime without code generation.

-- 
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-2595) Upload Hibernate Search 3.0.1.GA

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2595.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

uploaded with jar from jboss repo

> Upload Hibernate Search 3.0.1.GA
> 
>
> Key: MAVENUPLOAD-2595
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2595
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Edouard Hue
>Assignee: Carlos Sanchez
> Attachments: hibernate-search-3.0.1.GA-bundle.jar
>
>
> Notice : POM was slightly altered to add required information (name, url, 
> license...).

-- 
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-2596) Upload Hibernate Validator 3.1.0.GA

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2596.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

got it from jboss repo

> Upload Hibernate Validator 3.1.0.GA
> ---
>
> Key: MAVENUPLOAD-2596
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2596
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Edouard Hue
>Assignee: Carlos Sanchez
> Attachments: hibernate-validator-3.1.0.GA-bundle.jar
>
>
> Vanilla POM from JBoss. Sources included.

-- 
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-2583) Uploading into Maven repository

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2583.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Uploading into Maven repository
> ---
>
> Key: MAVENUPLOAD-2583
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2583
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Pavel Ponec
>Assignee: Carlos Sanchez
>
> The next one bunde:
> http://downloads.sourceforge.net/project/ujoframework/ujoframework/0.90/ujo-core-0.90-bundle.jar
> Thank you,
> regards Paul

-- 
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-2468) Please upload SVNKIT 1.3.0

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2468.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Please upload SVNKIT 1.3.0
> --
>
> Key: MAVENUPLOAD-2468
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2468
> Project: Maven Upload Requests
>  Issue Type: Task
>Reporter: Albert Kurucz
>Assignee: Carlos Sanchez
> Attachments: com.sun.jna-3.0.9-bundle.jar, 
> com.trilead.ssh2-build213-svnkit-1.3-patch-bundle.jar, jna-3.0.9-bundle.jar, 
> org.tmatesoft.svnkit-1.3.0.5847-bundle.jar, svnkit-1.3.0-bundle.jar, 
> svnkit-1.3.0.5847-bundle.jar, 
> trilead-ssh2-build213-svnkit-1.3-patch-bundle.jar
>
>
> Please load all 3 bundle files what svnkit has released in that single zip 
> file.
> My Codehaus project (jtstand) needs these dependencies.

-- 
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-2582) JasperReports 3.6.0 upload

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2582?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191500#action_191500
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2582:
-

you need to remove the repositories section, and please consider setting up an 
automatic synchronized repo, will be faster for all of us 

http://maven.apache.org/guides/mini/guide-central-repository-upload.html

> JasperReports 3.6.0 upload
> --
>
> Key: MAVENUPLOAD-2582
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2582
> Project: Maven Upload Requests
>  Issue Type: Task
>Reporter: Teodor Danciu
>
> http://jasperreports.sf.net/maven/jasperreports-3.6.0-bundle.jar
> http://sourceforge.net/projects/jasperreports
> http://sourceforge.net/project/memberlist.php?group_id=36382
> Open Source Reporting Engine 

-- 
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-2579) Already have automatic syncronization, need to expand it

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2579.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

I believe this was fixed already

> Already have automatic syncronization, need to expand it
> 
>
> Key: MAVENUPLOAD-2579
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2579
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Ceki Gulcu
>Assignee: Carlos Sanchez
>
> Hello,
> The logback.qos.ch is already automatically synchronized with ibiblio. Here 
> is the relevant line from [1] :
> "ch.qos.logback","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki 
> Gulcu","c...@qos.ch",,
> We have created a new open source project called cai18n which also needs to 
> get uploaded. Since "rsync://pixie.qos.ch/mvnrepo" only contains open source 
> project we would like to upload to ibiblio, would it be possible to change it 
> so that the contents of all open source qos.ch projects are automatically 
> uploaded? As I understand it, the quoted above would need to be changed to:
> "ch.qos","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki Gulcu","c...@qos.ch",,
> Which looks easy enough. :-)
> Many thanks in advance,
> [1] 
> https://svn.apache.org/repos/asf/maven/repository-tools/trunk/src/bin/synchronize/m2-sync/sync.csv

-- 
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-2577) Please upload two org.igniterealtime Tinder bundles

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2577.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Please upload two org.igniterealtime Tinder bundles
> ---
>
> Key: MAVENUPLOAD-2577
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2577
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Guus der Kinderen
>Assignee: Carlos Sanchez
>
> http://www.igniterealtime.org/maven/tinder-1.0.0-bundle.jar
> http://www.igniterealtime.org/maven/tinder-1.1.0-bundle.jar
> http://www.igniterealtime.org/projects/tinder/
> http://www.igniterealtime.org/projects/tinder/index.jsp (top right corner)
> I'm the project lead of Tinder (groupId org.igniterealtime). I would like the 
> two releases listed above to be uploaded to the central maven repository.

-- 
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-2585) rsync_ssh request for ldap-sdk.sourceforge.net

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2585.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> rsync_ssh request for ldap-sdk.sourceforge.net
> --
>
> Key: MAVENUPLOAD-2585
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2585
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Neil Wilson
>Assignee: Carlos Sanchez
>
> "com.unboundid","mavens...@web.sourceforge.net:/home/groups/l/ld/ldap-sdk/htdocs/maven","rsync_ssh","Neil
>  Wilson","neil.wil...@unboundid.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-2588) rsync_ssh request for net.sf.transmorph

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2588.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> rsync_ssh request for net.sf.transmorph
> ---
>
> Key: MAVENUPLOAD-2588
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2588
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Cédric Chabanois
>Assignee: Carlos Sanchez
>
> "net.sf.transmorph","mavens...@web.sourceforge.net:/home/groups/t/tr/transmorph/htdocs/m2repo","rsync_ssh","Cedric
>  Chabanois","cchaban...@gmail.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] Commented: (MAVENUPLOAD-2589) Jansi 1.0

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191503#action_191503
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2589:
-

you need to remove the repositories section. All dependencies must be in central

> Jansi 1.0
> -
>
> Key: MAVENUPLOAD-2589
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2589
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Guillaume Nodet
>


-- 
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-2590) sync of release repo

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2590.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> sync of release repo
> 
>
> Key: MAVENUPLOAD-2590
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2590
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Claus Brøndby Reimer
>Assignee: Carlos Sanchez
>
> Hi Maven Tema
> I have created my first maven plugin, and i would love to share 
> can I have my project sync'ed 
> "org.wooddog.mavenplugins","rsync://www.wooddog.org/mavenplugins","rsync","Claus
>  Brøndby Reimer","claus...@gmail.com"
> proof of domain
> http://reports.internic.net/cgi/whois?type=domain&whois_nic=wooddog.org
> http://www.wooddog.org/maven/site/keystore/team-list.html
> best regards,
> Claus 

-- 
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-2592) Upload JavaCC 5.0

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2592.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Upload JavaCC 5.0
> -
>
> Key: MAVENUPLOAD-2592
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2592
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Benjamin Bentmann
>Assignee: Carlos Sanchez
>
> http://people.apache.org/~bentmann/maven/javacc-5.0-bundle.jar
> https://javacc.dev.java.net/
> I'm not a developer but assembled the bundle from the POM of the predecessor 
> release 4.2 already on central. 

-- 
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-2593) Synchronizing javacrumbs.net repository

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2593.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Synchronizing javacrumbs.net repository
> ---
>
> Key: MAVENUPLOAD-2593
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2593
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Lukas Krecan
>Assignee: Carlos Sanchez
>
> The CSV entry for the sync:
> {noformat} 
> "net.javacrumbs","rsync://javacrumbs.net/m2repo","rsync","Lukas 
> Krecan","lu...@krecan.net",,
> {noformat}
> The proof of the ownership of the domain by me Lukas Krecan can be confirmed 
> at http://whois.domaintools.com/javacrumbs.net
> I'm making this request as an author of Spring WS Test project 
> (http://javacrumbs.net/spring-ws-test/) and administrator of its Maven2 
> repository.
> My name is mentioned in the middle of the project page. 

-- 
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-2587) Equinox Core Framework 3.5.0.v20090520

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2587.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Equinox Core Framework 3.5.0.v20090520
> --
>
> Key: MAVENUPLOAD-2587
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2587
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Guillaume Nodet
>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-2591) opensymphony-quartz-1.6.4

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2591.
---

  Assignee: Carlos Sanchez
Resolution: Won't Fix

opensymphony repository is managed by Patrick Lightbody plightbo at gmail.com
you need to ask him

> opensymphony-quartz-1.6.4
> -
>
> Key: MAVENUPLOAD-2591
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2591
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: raflik
>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-2594) Deploy JExcelApi 2.6.10

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2594.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

uploaded 

> Deploy JExcelApi 2.6.10
> ---
>
> Key: MAVENUPLOAD-2594
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2594
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Rob Manning
>Assignee: Carlos Sanchez
>
> I would like to include jexcelapi 2.6.10 as a dependency in my maven pom.  
> However, the latest version that is available in maven central is 2.6.3.  The 
> project doesn't use maven 
> (http://tech.groups.yahoo.com/group/JExcelApi/message/10467), so only maven 
> users will have the desire to place their releases into maven central.  So, I 
> downloaded the 2.6.3 pom and the 2.6.10 jar from sourceforge and incremented 
> the version in the pom to 2.6.10.  I have deployed the artifact into my own 
> nexus repository here 
> (https://www.squirrel-sql.org/nexus/content/repositories/thirdparty/net/sourceforge/jexcelapi/jxl/2.6.10/).
>   Can you all import it for me now ?  Or perhaps there is something else I 
> must do to get it deployed to maven central ?  

-- 
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-2598) Rsync for MySQL Connector/J broken somewhere

2009-09-18 Thread Mark Matthews (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191506#action_191506
 ] 

Mark Matthews commented on MAVENUPLOAD-2598:


Carlos,

You are right. I should've said "Nobody informed me that these didn't appear 
transient, and they were going to remove the synchronization altogether". I 
receive enough of these supposedly helpful bot-generated e-mails about failures 
that turn out to be transient, that I tend to ignore them.

An e-mail from an admin saying "I'm killing this sync", would've gotten some 
attention though.

What version of rsync does the synchronization happen to run? My current 
hypothesis is that it's 3.0, which isn't compatible with rssh. I'm guessing 
that your repository host was upgraded on or around the end of August 2008?

  -Mark

> Rsync for MySQL Connector/J broken somewhere
> 
>
> Key: MAVENUPLOAD-2598
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2598
> Project: Maven Upload Requests
>  Issue Type: Bug
>Reporter: Mark Matthews
>
> It seems that the rsync of the bundles that we (MySQL) put up to be 
> synchronized into the repository has broken somewhere. Are you receiving 
> errors on your end?

-- 
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-2597) Upload files for Java Service Wrapper version 3.3.6 (delta pack)

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2597.
---

  Assignee: Carlos Sanchez
Resolution: Incomplete

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


> Upload files for Java Service Wrapper version 3.3.6 (delta pack)
> 
>
> Key: MAVENUPLOAD-2597
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2597
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Mads Mohr Christensen
>Assignee: Carlos Sanchez
> Attachments: wrapper-3.3.6.jar
>
>
> As requested in http://jira.codehaus.org/browse/MAPPASM-88
> 
> tanukisoft
> wrapper
> 3.3.6
>  

-- 
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-2600) Change sync details for net.fckeditor

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2600.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Change sync details for net.fckeditor
> -
>
> Key: MAVENUPLOAD-2600
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2600
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Michael Osipov
>Assignee: Carlos Sanchez
>
> Currently our repo is synced with Central. I am the contact for:
> "net.fckeditor","rsync://java.fckeditor.net/m2repo","rsync","Michael 
> Osipov","michae...@users.sourceforge.net"
> Please change the contactName and eMail to our admin (CTO):
> contactName: Wiktor Walc
> contactMail: w.w...@fckeditor.net
> His details can be found here: http://cksource.com/team
> finally it would be:
> "net.fckeditor","rsync://java.fckeditor.net/m2repo","rsync","Wiktor 
> Walc","w.w...@fckeditor.net"

-- 
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-2602) rsync_ssh request for objectfanatics.jp

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2602.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> rsync_ssh request for objectfanatics.jp
> ---
>
> Key: MAVENUPLOAD-2602
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2602
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Makoto Sato
>Assignee: Carlos Sanchez
>
> "jp.objectfanatics","mvns...@shell.sourceforge.jp:/home/groups/d/do/domaingen/htdocs/m2central","rsync_ssh","Makoto
>  Sato","beyondsee...@yahoo.co.jp",,
> Whois : http://whois.jprs.jp/en/?type=DOM&key=objectfanatics.jp

-- 
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-2579) Already have automatic syncronization, need to expand it

2009-09-18 Thread Ceki Gulcu (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2579?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191510#action_191510
 ] 

Ceki Gulcu commented on MAVENUPLOAD-2579:
-

Indeed it was fixed. 

> Already have automatic syncronization, need to expand it
> 
>
> Key: MAVENUPLOAD-2579
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2579
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Ceki Gulcu
>Assignee: Carlos Sanchez
>
> Hello,
> The logback.qos.ch is already automatically synchronized with ibiblio. Here 
> is the relevant line from [1] :
> "ch.qos.logback","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki 
> Gulcu","c...@qos.ch",,
> We have created a new open source project called cai18n which also needs to 
> get uploaded. Since "rsync://pixie.qos.ch/mvnrepo" only contains open source 
> project we would like to upload to ibiblio, would it be possible to change it 
> so that the contents of all open source qos.ch projects are automatically 
> uploaded? As I understand it, the quoted above would need to be changed to:
> "ch.qos","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki Gulcu","c...@qos.ch",,
> Which looks easy enough. :-)
> Many thanks in advance,
> [1] 
> https://svn.apache.org/repos/asf/maven/repository-tools/trunk/src/bin/synchronize/m2-sync/sync.csv

-- 
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-2580) rsync Objenesis to maven central repository

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191512#action_191512
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2580:
-

do you own objenesis.org domain?

> rsync Objenesis to maven central repository
> ---
>
> Key: MAVENUPLOAD-2580
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2580
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Henri Tremblay
>
> Please configure the rsync for Objenesis which is deployed in the easymock 
> repository.
> The rsync line:
> "org.objenesis","mavens...@shell.sourceforge.net:/home/groups/e/ea/easymock/htdocs/maven/repository","rsync_ssh","Henri
>  Tremblay","henri.tremb...@gmail.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] Commented: (MAVENUPLOAD-2468) Please upload SVNKIT 1.3.0

2009-09-18 Thread Albert Kurucz (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191511#action_191511
 ] 

Albert Kurucz commented on MAVENUPLOAD-2468:


anyway 1.3.0 is getting obsolete since 1.3.1 is out: 
http://svnkit.com/download.php
Even some Maven bundle is released : 
http://www.svnkit.com/org.tmatesoft.svn_1.3.1.maven.zip
in would be nice...

.. if they would start building with Maven*
*only my opinion


> Please upload SVNKIT 1.3.0
> --
>
> Key: MAVENUPLOAD-2468
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2468
> Project: Maven Upload Requests
>  Issue Type: Task
>Reporter: Albert Kurucz
>Assignee: Carlos Sanchez
> Attachments: com.sun.jna-3.0.9-bundle.jar, 
> com.trilead.ssh2-build213-svnkit-1.3-patch-bundle.jar, jna-3.0.9-bundle.jar, 
> org.tmatesoft.svnkit-1.3.0.5847-bundle.jar, svnkit-1.3.0-bundle.jar, 
> svnkit-1.3.0.5847-bundle.jar, 
> trilead-ssh2-build213-svnkit-1.3-patch-bundle.jar
>
>
> Please load all 3 bundle files what svnkit has released in that single zip 
> file.
> My Codehaus project (jtstand) needs these dependencies.

-- 
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: (MAVENUPLOAD-2468) Please upload SVNKIT 1.3.0

2009-09-18 Thread Albert Kurucz (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191511#action_191511
 ] 

Albert Kurucz edited comment on MAVENUPLOAD-2468 at 9/18/09 3:17 PM:
-

anyway 1.3.0 is getting obsolete since 1.3.1 is out: 
http://svnkit.com/download.php
Even some Maven bundle is released : 
http://www.svnkit.com/org.tmatesoft.svn_1.3.1.maven.zip
it would be nice...

.. if they would start building with Maven*
*only my opinion


  was (Author: ali65):
anyway 1.3.0 is getting obsolete since 1.3.1 is out: 
http://svnkit.com/download.php
Even some Maven bundle is released : 
http://www.svnkit.com/org.tmatesoft.svn_1.3.1.maven.zip
in would be nice...

.. if they would start building with Maven*
*only my opinion

  
> Please upload SVNKIT 1.3.0
> --
>
> Key: MAVENUPLOAD-2468
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2468
> Project: Maven Upload Requests
>  Issue Type: Task
>Reporter: Albert Kurucz
>Assignee: Carlos Sanchez
> Attachments: com.sun.jna-3.0.9-bundle.jar, 
> com.trilead.ssh2-build213-svnkit-1.3-patch-bundle.jar, jna-3.0.9-bundle.jar, 
> org.tmatesoft.svnkit-1.3.0.5847-bundle.jar, svnkit-1.3.0-bundle.jar, 
> svnkit-1.3.0.5847-bundle.jar, 
> trilead-ssh2-build213-svnkit-1.3-patch-bundle.jar
>
>
> Please load all 3 bundle files what svnkit has released in that single zip 
> file.
> My Codehaus project (jtstand) needs these dependencies.

-- 
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-2605) rsync_ssh request for jlue.sourceforge.net

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2605.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> rsync_ssh request for jlue.sourceforge.net
> --
>
> Key: MAVENUPLOAD-2605
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2605
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: jlue
>Assignee: Carlos Sanchez
>
> "net.sf.jlue","mavens...@shell.sourceforge.net:/home/groups/j/jl/jlue/htdocs/m2repo","rsync_ssh","jlue","sun...@gmail.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] Commented: (MAVENUPLOAD-2603) Upload information in comma delimited format

2009-09-18 Thread Carlos Sanchez (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2603?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191520#action_191520
 ] 

Carlos Sanchez commented on MAVENUPLOAD-2603:
-

ssh ma...@haddock.unibe.ch
ssh: connect to host haddock.unibe.ch port 22: Connection timed out

> Upload information in comma delimited format
> 
>
> Key: MAVENUPLOAD-2603
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2603
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Adrian Kuhn
>
> "ch.unibe.jexample","ma...@haddock.unibe.ch:/home/scg/download/jexample/maven","rsync_ssh","Adrian
>  Kuhn","ak...@iam.unibe.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-2604) Upload JFreeChart 1.0.13 and JCommon 1.0.16 dependent project

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez closed MAVENUPLOAD-2604.
---

  Assignee: Carlos Sanchez
Resolution: Fixed

> Upload JFreeChart 1.0.13 and JCommon 1.0.16 dependent project
> -
>
> Key: MAVENUPLOAD-2604
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2604
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Javier Moran
>Assignee: Carlos Sanchez
> Attachments: jcommon-1.0.16-bundle.jar, jfreechart-1.0.13-bundle.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] Reopened: (MAVENUPLOAD-2604) Upload JFreeChart 1.0.13 and JCommon 1.0.16 dependent project

2009-09-18 Thread Carlos Sanchez (JIRA)

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

Carlos Sanchez reopened MAVENUPLOAD-2604:
-

  Assignee: (was: Carlos Sanchez)

jcommon-1.0.16-bundle.jar is empty

> Upload JFreeChart 1.0.13 and JCommon 1.0.16 dependent project
> -
>
> Key: MAVENUPLOAD-2604
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2604
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Javier Moran
> Attachments: jcommon-1.0.16-bundle.jar, jfreechart-1.0.13-bundle.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] Commented: (MAVENUPLOAD-2580) rsync Objenesis to maven central repository

2009-09-18 Thread Henri Tremblay (JIRA)

[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-2580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191525#action_191525
 ] 

Henri Tremblay commented on MAVENUPLOAD-2580:
-

Sadly no. Nobody does. It's just the package we picked for objenesis. Older 
versions were added manually in the central repository following previous jira 
issues created by me.


> rsync Objenesis to maven central repository
> ---
>
> Key: MAVENUPLOAD-2580
> URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2580
> Project: Maven Upload Requests
>  Issue Type: Wish
>Reporter: Henri Tremblay
>
> Please configure the rsync for Objenesis which is deployed in the easymock 
> repository.
> The rsync line:
> "org.objenesis","mavens...@shell.sourceforge.net:/home/groups/e/ea/easymock/htdocs/maven/repository","rsync_ssh","Henri
>  Tremblay","henri.tremb...@gmail.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] Created: (MNG-4363) [regression] Dependency artifacts injected by plugins aren't included in class paths

2009-09-18 Thread Benjamin Bentmann (JIRA)
[regression] Dependency artifacts injected by plugins aren't included in class 
paths


 Key: MNG-4363
 URL: http://jira.codehaus.org/browse/MNG-4363
 Project: Maven 2
  Issue Type: Bug
  Components: Artifacts and Repositories, Plugins and Lifecycle
Affects Versions: 3.0-alpha-3
Reporter: Benjamin Bentmann


Plugins like cobertura-maven-plugin or emma-maven-plugin inject some of their 
plugin dependencies into the dependency artifacts of the project when 
instrumenting classes, such that plugins like Surefire that run afterwards 
automatically get the proper class path for loading the instrumented classes.

trunk currently resolves dependencies only once, namely before the build of a 
project starts, thereby ignoring updates to the dependency artifacts of the 
project.

-- 
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-4358) Multi-projects seem to send interrupt signals to some tasks

2009-09-18 Thread Gustavo Hexsel (JIRA)

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

Gustavo Hexsel updated MNG-4358:


Attachment: interrupt_on_resolve.tar.bz

This is an example of it interrupting on resolve (AFTER the compilation and 
copying was done both for source and test - why is it still resolving?).

> Multi-projects seem to send interrupt signals to some tasks
> ---
>
> Key: MNG-4358
> URL: http://jira.codehaus.org/browse/MNG-4358
> Project: Maven 2
>  Issue Type: Bug
>  Components: Plugins and Lifecycle
>Affects Versions: 2.2.1
> Environment: All 64 bit.  Ubuntu 9.10 b5, OpenJDK Runtime Environment 
> (IcedTea6 1.6) (6b16-1.6-1ubuntu1).
>Reporter: Gustavo Hexsel
> Attachments: interrupt_on_resolve.tar.bz, out.tar.bz
>
>
> Tasks like exec:exec and surefire (testing) seem to receive an occasional 
> interrupt signal, causing the test or task to fail.  This only happens on 
> multi-module projects (i.e. if I run it a module at a time, it works).
> Here's an example stacktrace from exec:exec (I can try to reproduce the 
> surefire one as well):
> [INFO] 
> 
> [ERROR] BUILD ERROR
> [INFO] 
> 
> [INFO] Command execution failed.
> Embedded error: Error while executing external command, process killed.
> [INFO] 
> 
> [DEBUG] Trace
> org.apache.maven.lifecycle.LifecycleExecutionException: Command execution 
> failed.
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:584)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:500)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:479)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:331)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:292)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:142)
>   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:336)
>   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
>   at org.apache.maven.cli.MavenCli.main(MavenCli.java:301)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:616)
>   at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
>   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
>   at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
>   at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
> Caused by: org.apache.maven.plugin.MojoExecutionException: Command execution 
> failed.
>   at org.codehaus.mojo.exec.ExecMojo.execute(ExecMojo.java:288)
>   at 
> org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:453)
>   at 
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:559)
>   ... 16 more
> Caused by: org.codehaus.plexus.util.cli.CommandLineException: Error while 
> executing external command, process killed.
>   at 
> org.codehaus.plexus.util.cli.CommandLineUtils.executeCommandLine(CommandLineUtils.java:199)
>   at 
> org.codehaus.plexus.util.cli.CommandLineUtils.executeCommandLine(CommandLineUtils.java:93)
>   at org.codehaus.mojo.exec.ExecMojo.executeCommandLine(ExecMojo.java:437)
>   at org.codehaus.mojo.exec.ExecMojo.execute(ExecMojo.java:279)
>   ... 18 more
> Caused by: java.lang.InterruptedException
>   at java.lang.Object.wait(Native Method)
>   at java.lang.Object.wait(Object.java:502)
>   at java.lang.UNIXProcess.waitFor(UNIXProcess.java:181)
>   at 
> org.codehaus.plexus.util.cli.CommandLineUtils.executeCommandLine(CommandLineUtils.java:147)
>   ... 21 more

-- 
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: (MAVENUPLOAD-2606) request to upload the standalone eclipse compiler ecj-3.5.jar to maven repository

2009-09-18 Thread Hugues Malphettes (JIRA)
request to upload the standalone eclipse compiler ecj-3.5.jar to maven 
repository
-

 Key: MAVENUPLOAD-2606
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-2606
 Project: Maven Upload Requests
  Issue Type: Wish
Reporter: Hugues Malphettes


ecj-3.5.jar is a java compiler developed by eclipse by the JDT/core project: 
http://eclipse.org/jdt/core/index.php

The eclipse java compiler is commonly used as a drop-in replacement of the 
JDK's javac tool.
It has no dependency and is widely used for example by the jsp compiler 
"jasper".
The 2005 version is named core-3.1.1.jar and is currently distributed with all 
popular app-servers: jetty-hightide, glassfish, jboss etc.
http://repo2.maven.org/maven2/org/eclipse/jdt/core/3.1.1/

ecj-3.5 has multiple advantages over core-3.1.1:
- up to date, support for producing java-1.6 bytecode if necessary.
- smaller than core-3.1.1 that comes with a lot of unused eclipse-only classes.
- when loaded in an OSGi container it does not require eclipse-RCP (see 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=289406)

jasper now supports ecj-3.5 and will probably recommend using it: 
https://jsp.dev.java.net/issues/show_bug.cgi?id=13




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