[jira] Commented: (MAVEN-1294) Maven is leaking much memory

2005-03-06 Thread Mykel Alvis (JIRA)
 [ http://jira.codehaus.org/browse/MAVEN-1294?page=comments#action_30545 ]
 
Mykel Alvis commented on MAVEN-1294:


I'm having this issue using the site plugin on a very large source code base.  
I posted to users@maven.apache.org so this comment may be irrelevant.

> Maven is leaking much memory
> 
>
>  Key: MAVEN-1294
>  URL: http://jira.codehaus.org/browse/MAVEN-1294
>  Project: maven
> Type: Bug
>   Components: jelly/ant integration
> Versions: 1.0-rc3
> Reporter: Rafal Krzewski
>  Attachments: sites2.xls
>
>
> The test was done as follows. I took ledge-components project 
> http://objectledge.org/modules/ledge-components, cleaned out the target, then 
> ran statcvs goal. Statcvs generated 160 xdoc documents, 2.2MB of markup 
> total. Then I ran xdocs goal, to tranfrom the xdocs into html, under hprof 
> profiler build into JDK. Settings were: allocation site analysis, heap dump 
> at exit, stacktrace depth 16. The run took about 65 minutes on Athlon 1700XP, 
> 512 phisical RAM. Maximum memory usage was 530MB virtual/240MB resident 
> during the run, it surged some additional 300MB both during heap dump. The 
> generated dump file is about 350MB, 23MB when bzip2 compressed.
> I'm going to post an xls file on Jira containg the statistics of objects 
> allocated, and objects alive at the time of VM generation. From what I'm 
> seeing none of the Jelly TagScript objects created gets ever garbage 
> collected. Wading through the heap dump I was able to determine that all of 
> them are connected to the GC root through the main Thread, and a ThreadLocal 
> variable tagHolder declared in jelly's TagScript.java, line 115. Despite 
> calls to tagHolder.set(null), the TagScript object stays connected to the 
> Thread by means of ThreadLocal$ThreadLocalMap$Entry object which is a 
> subclass of java.lang.ref.WeakReference. ThreadLocal implementation in JDK 
> works like that. Now, AFAIK the GC is free to harvest all objects that are 
> not connected to a GC root through hard reference, or a SoftReference. I 
> wasn't able to trace all references in the object graph regarding TagScript 
> objects (there are 21k+ of them!) so I am not sure if there are any other 
> references that connect the TagScripts to a GC root through a permanent 
> refernce, like a static field in some class. I cant tell you it's a dog's 
> work to do that by hand. If I only had a proper memory analysys tool! Alas 
> all the good ones are commercial... On the other hand GC is not *required* to 
> harvest these objects. Maybe it just didn't bother to harvest because it was 
> not pressed for memory? In my test it had still many megabytes left. Maybe a 
> better test would be running it with too few memory and checking what was 
> left alive, despite the fact GC was desperate to find the space?
> At any rate, TagScript.tagHolder is suspicious, and if it's even not the 
> culprit itself (could be if WeakRefernce implementation was broken) it is 
> hiding the real problem (at least in the environment of my test). Note that 
> the variable is not static, which means all TagScript object instances get 
> tied to the Thread. I don't know if the possibility of using each instance 
> concurrently from multiple threads is useful at all, especially that the 
> instances have more state information, not only the tagHolder... Anyway, it's 
> a wrong forum to discuss that. I also heard that Jelly was abandoned by the 
> original author so there is a good chance that noone understands why this 
> tagHolder thingy was introduced and what it does...

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [VOTE] Releasing CruiseControl plugin v1.7?

2005-03-06 Thread Arnaud HERITIER
+1

Arnaud

> -Message d'origine-
> De : Vincent Massol [mailto:[EMAIL PROTECTED] 
> Envoyé : dimanche 6 mars 2005 22:02
> À : 'Maven Developers List'
> Objet : [VOTE] Releasing CruiseControl plugin v1.7?
> 
> Hi,
> 
> I'd like to release the CC plugin v1.7. Here are the changes 
> brought since
> v1.6:
> 
>   
> Removed all dependencies on the SCM module and 
> instead replace all
> occurrences with ${pom.artifactId}.
>   
>   
> Added new cruisecontrol:configure-war 
> goal that generates
> a configured CruiseControl webapp WAR.
>   
>   
> Use the same default value for the 
> maven.cruisecontrol.mail.buildresultsurl property
> than the one for 
> maven.cruisecontrol.buildresults.url.
>   
>   
> Modified default value of
> maven.cruisecontrol.logs.mergedirectory
> so that CC can aggregate JUnit test reports both for 
> single project and
> multiproject setups.
>   
>   
> Compute automatically the merge directory automatically (the 
> value of maven.cruisecontrol.logs.mergedirectory
> if not specified by the user. The computation uses the
> maven.build.dir property to guess the output
> directory for JUnit test results.
>   
>   
> Added a new 
> maven.cruisecontrol.logs.pattern property
> to specify the report files that will be merged by 
> CC. Defaults to
> *.xml.
>   
>   
> Added a new cruisecontrol:install-local goal
> to install the generated CC config to a target location on 
> the same machine (it uses a file copy). In the future we could
> provide other installation mechanisms like ssh, scp, etc.
>   
>   
> Changed the default build status file name to be 
> status.txt which is the default value
> expected by the CC Webapp.
>   
>   
> New maven.cruisecontrol.work.dir 
> property that specifies
> what CC work directory to use for the project. 
> Default values of
> maven.cruisecontrol.checkout.dir and 
> maven.cruisecontrol.logs.dir have been 
> modified to be
> relative to it.
>   
>   
> Fixed default property values for 
> maven.cruisecontrol.mail.xlsdir
> and maven.cruisecontrol.mail.css so that 
> the plugin works by default
> with the latest CC version (2.2.1).
>   
>   
> Fix order in which the CruiseControl's 
> 
> elements are generated. They must be in the order of the less
> dependent project first.
>   
> 
> Here's my +1
> 
> Thanks
> -Vincent
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED] For 
> additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: jira refuses attachments

2005-03-06 Thread Brett Porter
Bob has fixed it (thanks Bob!)

- Brett

Quoting Fabrizio Giustina <[EMAIL PROTECTED]>:

> There is still something wrong with jira, attachments are not uploaded
> correctly.
> 
> I just tried to add the patch for
> http://jira.codehaus.org/browse/MPECLIPSE-78 and I received this error
> (tried a couple of times):
> 
> Exception trying to establish attachment directory.
> Check that the application server and JIRA have permissions to write
> to it: com.atlassian.jira.web.util.AttachmentException:
> Cannot write to attachment directory.
> Check that the application server and JIRA have permissions to write
> to: /home/services/orion/jira/attachments/MPECLIPSE/MPECLIPSE-78
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Updated: (MPECLIPSE-78) avoid duplicated builders/natures (patch)

2005-03-06 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MPECLIPSE-78?page=history ]

Brett Porter updated MPECLIPSE-78:
--

Attachment: test.txt

test attachment

> avoid duplicated builders/natures (patch)
> -
>
>  Key: MPECLIPSE-78
>  URL: http://jira.codehaus.org/browse/MPECLIPSE-78
>  Project: maven-eclipse-plugin
> Type: Bug
> Versions: 1.9
> Reporter: fabrizio giustina
>  Fix For: 1.10

>
> Original Estimate: 10 minutes
> Remaining: 10 minutes
>
> The eclipse plugin automatically adds the java nature/builder as the first 
> entry for each project.
> Anyway, sometime you will need to add more builders and in a different order. 
> Specifying an addictional java builder in project properties, however, lead 
> to a duplicate entries in .project.
> The problem is discussed at:
> http://www.eclipse.org/webtools/jst/components/j2ee/scenarios/MavenEclipseIntegration.html
> snippet:
> "Create a file project.properties under the csrweb folder, the folder where 
> you will find project.xml. Now add the following in this file.
>   
> maven.eclipse.projectnatures=org.eclipse.jst.j2ee.web.WebNature,org.eclipse.jdt.core.javanature,org.eclipse.wst.common.modulecore.ModuleCoreNature
> maven.eclipse.buildcommands=org.eclipse.wst.common.modulecore.DeployableModuleBuilder,org.eclipse.jdt.core.javabuilder,org.eclipse.jst.j2ee.web.LibDirBuilder,org.eclipse.wst.validation.validationbuilder,org.eclipse.jst.j2ee.LibCopyBuilder,org.eclipse.wst.common.modulecore.LocalDependencyResolver
> ...
> Open the .project and remove the first buildcommand javabuilder and the first 
> nature org.eclipse.jdt.core.javanature.
> This is done to ensure that only one entry of javabuilder and 
> org.eclipse.jdt.core.javanature exists.
> The correct order of builder and natures are needed to ensure proper 
> functionality
> "
> This patch solves the problem avoiding addictional javabuilders and 
> javanatures if they are already present in the list specified using 
> project.properties. If maven.eclipse.projectnatures and 
> maven.eclipse.buildcommands don't contain a such entry, everything works as 
> before.
> The patch also contains a new specific plugin test.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r156342 - maven/maven-1/core/trunk/xdocs/using/migrating.xml

2005-03-06 Thread brett
Author: brett
Date: Sun Mar  6 13:36:01 2005
New Revision: 156342

URL: http://svn.apache.org/viewcvs?view=rev&rev=156342
Log:
fix spelling

Modified:
maven/maven-1/core/trunk/xdocs/using/migrating.xml

Modified: maven/maven-1/core/trunk/xdocs/using/migrating.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/using/migrating.xml?view=diff&r1=156341&r2=156342
==
--- maven/maven-1/core/trunk/xdocs/using/migrating.xml (original)
+++ maven/maven-1/core/trunk/xdocs/using/migrating.xml Sun Mar  6 13:36:01 2005
@@ -59,7 +59,7 @@
   repository. Publish your resulting artifacts to that repository 
also.
 
 
-  However, if there is a necessaity to maintain the file based 
approach, or you wish to start with that to keep
+  However, if there is a necessity to maintain the file based 
approach, or you wish to start with that to keep
   the number of changes down, you can use JAR overrides to have Maven 
look for dependencies on the file system.
   For more information, see Handling
   Dependencies.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [VOTE] Releasing CruiseControl plugin v1.7?

2005-03-06 Thread Brett Porter
+1

Quoting Vincent Massol <[EMAIL PROTECTED]>:

> Hi,
> 
> I'd like to release the CC plugin v1.7. Here are the changes brought since
> v1.6:
> 
>   
> Removed all dependencies on the SCM module and instead replace all
> occurrences with ${pom.artifactId}.
>   
>   
> Added new cruisecontrol:configure-war goal that
> generates
> a configured CruiseControl webapp WAR.
>   
>   
> Use the same default value for the 
> maven.cruisecontrol.mail.buildresultsurl property
> than the one for maven.cruisecontrol.buildresults.url.
>   
>   
> Modified default value of
> maven.cruisecontrol.logs.mergedirectory
> so that CC can aggregate JUnit test reports both for single project
> and
> multiproject setups.
>   
>   
> Compute automatically the merge directory automatically (the 
> value of maven.cruisecontrol.logs.mergedirectory
> if not specified by the user. The computation uses the
> maven.build.dir property to guess the output
> directory for JUnit test results.
>   
>   
> Added a new maven.cruisecontrol.logs.pattern property
> to specify the report files that will be merged by CC. Defaults to
> *.xml.
>   
>   
> Added a new cruisecontrol:install-local goal
> to install the generated CC config to a target location on 
> the same machine (it uses a file copy). In the future we could
> provide other installation mechanisms like ssh, scp, etc.
>   
>   
> Changed the default build status file name to be 
> status.txt which is the default value
> expected by the CC Webapp.
>   
>   
> New maven.cruisecontrol.work.dir property that
> specifies
> what CC work directory to use for the project. Default values of
> maven.cruisecontrol.checkout.dir and 
> maven.cruisecontrol.logs.dir have been modified to be
> relative to it.
>   
>   
> Fixed default property values for
> maven.cruisecontrol.mail.xlsdir
> and maven.cruisecontrol.mail.css so that the plugin
> works by default
> with the latest CC version (2.2.1).
>   
>   
> Fix order in which the CruiseControl's 
> elements are generated. They must be in the order of the less
> dependent project first.
>   
> 
> Here's my +1
> 
> Thanks
> -Vincent
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[VOTE] Releasing CruiseControl plugin v1.7?

2005-03-06 Thread Vincent Massol
Hi,

I'd like to release the CC plugin v1.7. Here are the changes brought since
v1.6:

  
Removed all dependencies on the SCM module and instead replace all
occurrences with ${pom.artifactId}.
  
  
Added new cruisecontrol:configure-war goal that
generates
a configured CruiseControl webapp WAR.
  
  
Use the same default value for the 
maven.cruisecontrol.mail.buildresultsurl property
than the one for maven.cruisecontrol.buildresults.url.
  
  
Modified default value of
maven.cruisecontrol.logs.mergedirectory
so that CC can aggregate JUnit test reports both for single project
and
multiproject setups.
  
  
Compute automatically the merge directory automatically (the 
value of maven.cruisecontrol.logs.mergedirectory
if not specified by the user. The computation uses the
maven.build.dir property to guess the output
directory for JUnit test results.
  
  
Added a new maven.cruisecontrol.logs.pattern property
to specify the report files that will be merged by CC. Defaults to
*.xml.
  
  
Added a new cruisecontrol:install-local goal
to install the generated CC config to a target location on 
the same machine (it uses a file copy). In the future we could
provide other installation mechanisms like ssh, scp, etc.
  
  
Changed the default build status file name to be 
status.txt which is the default value
expected by the CC Webapp.
  
  
New maven.cruisecontrol.work.dir property that
specifies
what CC work directory to use for the project. Default values of
maven.cruisecontrol.checkout.dir and 
maven.cruisecontrol.logs.dir have been modified to be
relative to it.
  
  
Fixed default property values for
maven.cruisecontrol.mail.xlsdir
and maven.cruisecontrol.mail.css so that the plugin
works by default
with the latest CC version (2.2.1).
  
  
Fix order in which the CruiseControl's 
elements are generated. They must be in the order of the less
dependent project first.
  

Here's my +1

Thanks
-Vincent




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r156341 - maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml

2005-03-06 Thread vmassol
Author: vmassol
Date: Sun Mar  6 13:00:41 2005
New Revision: 156341

URL: http://svn.apache.org/viewcvs?view=rev&rev=156341
Log:
Fixed incorrect version

Modified:
maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml?view=diff&r1=156340&r2=156341
==
--- maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/cruisecontrol/xdocs/changes.xml Sun Mar  6 
13:00:41 2005
@@ -25,7 +25,7 @@
 Vincent Massol
   
   
-
+
   
 Removed all dependencies on the SCM module and instead replace all
 occurrences with ${pom.artifactId}.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Updated: (MAVEN-1478) document plugin dependencies

2005-03-06 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MAVEN-1478?page=history ]

Brett Porter updated MAVEN-1478:


Comment: was deleted

> document plugin dependencies
> 
>
>  Key: MAVEN-1478
>  URL: http://jira.codehaus.org/browse/MAVEN-1478
>  Project: maven
> Type: Bug
>   Components: documentation
> Reporter: Brett Porter
> Assignee: Brett Porter
>  Fix For: 1.1-beta-1

>
>
> document the existence of plugin dependencies, how they work, and any known 
> issues. This is an often needed, little known feature.
> Also, might be worth discussing plugin:install-now for use in multiproject.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Updated: (MAVENUPLOAD-237) please upload HttpUnit 1.6 to ibiblio

2005-03-06 Thread Arnaud HERITIER (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-237?page=history ]

Arnaud HERITIER updated MAVENUPLOAD-237:


Comment: was deleted

> please upload HttpUnit 1.6 to ibiblio
> -
>
>  Key: MAVENUPLOAD-237
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-237
>  Project: maven-upload-requests
> Type: Task
> Reporter: Russell Gold
> Assignee: Carlos Sanchez

>
>
> http://www.httpunit.org/
> http://www.httpunit.org/doc/developers.html

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Created: (MAVENUPLOAD-318) UISpec4J 0.7

2005-03-06 Thread Regis Medina (JIRA)
UISpec4J 0.7


 Key: MAVENUPLOAD-318
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-318
 Project: maven-upload-requests
Type: Task
Reporter: Regis Medina


http://www.uispec4j.org/uispec4j-0.7-bundle.jar

http://www.uispec4j.org
http://www.uispec4j.org/team-list.html

UISpec4J is a functional and/or unit testing library for Swing-based Java 
applications, built on top of the JUnit test harness.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Updated: (MPANNOUNCEMENT-14) [PATCH] Check if there is a SCM tag set for the project

2005-03-06 Thread Vincent Massol (JIRA)
 [ http://jira.codehaus.org/browse/MPANNOUNCEMENT-14?page=history ]

Vincent Massol updated MPANNOUNCEMENT-14:
-

Comment: was deleted

> [PATCH] Check if there is a SCM tag set for the project
> ---
>
>  Key: MPANNOUNCEMENT-14
>  URL: http://jira.codehaus.org/browse/MPANNOUNCEMENT-14
>  Project: maven-announcement-plugin
> Type: Improvement
> Versions: 1.3
> Reporter: Felipe Leme
> Assignee: Vincent Massol
> Priority: Trivial
>  Fix For: 1.3
>  Attachments: mpannouncement-14.patch, mpannouncement-14.patch
>
> Original Estimate: 10 minutes
> Remaining: 10 minutes
>
> As I mentioned earlier in the dev-list, if the POM defines a  
> element, than the current version should have an equivalent  there, 
> otherwise check-version should fail.
> If that happens, announcement:check-version will show this message:
> Current release (XXX) does not have an entry at the POM's versions element.
> -- Felipe

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Commented: (MAVEN-1478) document plugin dependencies

2005-03-06 Thread Massage Therapy Centre London UK Health Thai Medicine Bowen (JIRA)
 [ http://jira.codehaus.org/browse/MAVEN-1478?page=comments#action_30515 ]
 
Massage Therapy Centre London UK Health Thai Medicine Bowen commented on 
MAVEN-1478:


http://www.massagelondon.org London Massage Therapist 
http://www.massagelondon.biz massage therapy West London UK 
http://www.massagelondon.me.uk London chair Massage UK 
http://www.health-resources.co.uk Medical Alternative Medicine resources in 
London England UK http://www.mobilephonesites.co.uk Nokia Free Mobile Phones 
Sites London England UK http://www.massagelondon.org.uk London Alternative 
Medicine UK http://www.massagelondon.info http://www.centrallondonmassage.co.uk 
W1 Massage Therapy Central London West End UK 
http://www.centrallondonmassage.me.uk W2 Paddington Therapeutic Massages 
Alternative Therapies London http://www.centrallondonmassage.org.uk W3 Acton 
Complementary Health Clinic London http://www.eastlondonmassage.co.uk E1 
Eastern Medicine London City of http://www.londonclinic.me.uk W4 Chiswick 
Health Clinic ME London http://www.londonmassagecentre.co.uk W5 Ealing Holistic 
Centre London UK http://www.londonmassagecentre.me.uk W6 Hammersmith Healing 
Massage London http://www.londonmassagecentre.org.uk W7 Hanwell Wellness Centre 
London http://www.londonmassageclinic.co.uk W8 Kensington Technique London 
Clinic http://www.londonmassageclinic.me.uk Thai Massage London Center W9 Maida 
Vale http://www.londonmassageclinic.org.uk W11 Notting Hill Alternative Health 
in London W10 http://www.londonmassagetherapy.co.uk W12 Shepherd's Shepherds 
Bush Complementary Therapies London http://www.londonmassagetherapy.me.uk W14 
West Kensington On Site Office Chair Massage London 
http://www.ilovemassage.co.uk http://www.ilovemassage.me.uk 
http://www.ilovemassage.org.uk http://www.imassage.info 
http://www.mywellness.me.uk http://www.therapeuticmassage.info 
http://www.massageme.co.uk http://www.mymedicine.co.uk 
http://www.mytherapy.co.uk http://www.mylove.org.uk EAST ACTON SHEPHERDS 
SHEPHER'S BUSH CHISWICK HAMMERSMITH FULHAM SOHO WESTMINSTER NOTTING HILL GATE 
BAYSWATER QUEENSWAY HOLLAND PARK KNIGHTSBRIDGE PICCADILLY LEICESTER SQUARE 
GREEN PARK HYDE PARK EARLS COURT TURNHAM GREEN WC1 Euston Bloomsbury WC2 
Holborn Covent Garden Strand Fitzrovia Mayfair Soho Chinatown SW1 Victoria 
Belgravia http://www.londonmassagetherapy.org.uk Massage Tables Couches Chairs 
UK MASSAGE THERAPY THERAPEUTIC MASSAGE THAI MASSAGE TRADITIONAL THAI MASSAGE 
INDONESIAN MASSAGE HAWAIIAN MASSAGE COMPLEMENTARY HEALTH ALTERNATIVE THERAPIES 
COMPLEMENTARY MEDICINE ALTERNATIVE MEDICINE HOLISTIC MASSAGE BOWEN TECHNIQUE 
BOWEN THERAPY CRANIOSACRAL THERAPY CRANIO SACRAL THERAPY LONDON THERAPIST 
THERAPISTS LONDON MASSAGE TREATMENT TREATMENTS LONDON MASSAGE 
http://www.londontherapist.me.uk Hawaiian Huna Bodywork London 
http://www.londontherapist.org.uk Healthy Massage Treatment 
http://www.massagecentrallondon.co.uk Lomi Lomi Kahuna Oil Massage 
http://www.massagecentrallondon.me.uk Holistic Therapists London 
http://www.massagecentrallondon.org.uk Craniosacral Therapy London 
http://www.massageclinic.me.uk Manual Lymph Drainage London 
http://www.massageclinic.org.uk Massage Experienced Qualified Insured London 
http://www.massagelondon-home.me.uk London Therapy at Home or Clinic 
http://www.massagelondon-home.org.uk Home Wellness London Therapy 
http://www.massagelondoncentral.co.uk Complementary Alternative Medicine West 
London http://www.massagelondononline.me.uk Generic Domain Names Google Ranked 
Sale http://www.massagelondononline.org.uk Info on Massage Equipment Sale UK 
http://www.massagelondonpage.me.uk Information Site about Massage Therapy 
London UK http://www.massagelondonpage.org.uk London UK complementary therapies 
massage http://www.massagelondonweb.me.uk alternative health London UK thai 
massage http://www.massagelondonweb.org.uk http://www.massagelondonwest.co.uk 
traditional thai indonesian massage therapy London 
http://www.massagenorthlondon.co.uk http://www.massagepractitioner.co.uk 
http://www.massagepractitioner.me.uk http://www.massagepractitioner.org.uk 
http://www.massagesouthlondon.co.uk http://www.massagetherapylondon.co.uk 
http://www.massagetherapylondon.me.uk http://www.massagetherapylondon.org.uk 
http://www.massagewestlondon.co.uk http://www.massagewestlondon.me.uk 
http://www.massagewestlondon.org.uk http://www.mybodywork.me.uk 
http://www.mybodywork.org.uk http://www.mylondonmassage.me.uk 
http://www.mylondonmassage.org.uk http://www.mymassagenow.me.uk 
http://www.mymassagenow.org.uk http://www.myrub.me.uk http://www.myrub.org.uk 
http://www.mythaimassage.me.uk http://www.northlondonmassage.co.uk 
http://www.oilmassage.me.uk http://www.southlondonmassage.co.uk 
http://www.therapeuticmassagelondon.co.uk 
http://www.therapeuticmassagelondon.me.uk 
http://www.therapeuticmassagelondon.org.uk http://www.therapist.me.uk 
http://www.t

[jira] Commented: (MAVENUPLOAD-237) please upload HttpUnit 1.6 to ibiblio

2005-03-06 Thread Massage Therapy Centre London UK Health Thai Medicine Bowen (JIRA)
 [ 
http://jira.codehaus.org/browse/MAVENUPLOAD-237?page=comments#action_30501 ]
 
Massage Therapy Centre London UK Health Thai Medicine Bowen commented on 
MAVENUPLOAD-237:
-

http://www.massagelondon.org London Massage Therapist 
http://www.massagelondon.biz massage therapy West London UK 
http://www.massagelondon.me.uk London chair Massage UK 
http://www.health-resources.co.uk Medical Alternative Medicine resources in 
London England UK http://www.mobilephonesites.co.uk Nokia Free Mobile Phones 
Sites London England UK http://www.massagelondon.org.uk London Alternative 
Medicine UK http://www.massagelondon.info http://www.centrallondonmassage.co.uk 
W1 Massage Therapy Central London West End UK 
http://www.centrallondonmassage.me.uk W2 Paddington Therapeutic Massages 
Alternative Therapies London http://www.centrallondonmassage.org.uk W3 Acton 
Complementary Health Clinic London http://www.eastlondonmassage.co.uk E1 
Eastern Medicine London City of http://www.londonclinic.me.uk W4 Chiswick 
Health Clinic ME London http://www.londonmassagecentre.co.uk W5 Ealing Holistic 
Centre London UK http://www.londonmassagecentre.me.uk W6 Hammersmith Healing 
Massage London http://www.londonmassagecentre.org.uk W7 Hanwell Wellness Centre 
London http://www.londonmassageclinic.co.uk W8 Kensington Technique London 
Clinic http://www.londonmassageclinic.me.uk Thai Massage London Center W9 Maida 
Vale http://www.londonmassageclinic.org.uk W11 Notting Hill Alternative Health 
in London W10 http://www.londonmassagetherapy.co.uk W12 Shepherd's Shepherds 
Bush Complementary Therapies London http://www.londonmassagetherapy.me.uk W14 
West Kensington On Site Office Chair Massage London 
http://www.ilovemassage.co.uk http://www.ilovemassage.me.uk 
http://www.ilovemassage.org.uk http://www.imassage.info 
http://www.mywellness.me.uk http://www.therapeuticmassage.info 
http://www.massageme.co.uk http://www.mymedicine.co.uk 
http://www.mytherapy.co.uk http://www.mylove.org.uk EAST ACTON SHEPHERDS 
SHEPHER'S BUSH CHISWICK HAMMERSMITH FULHAM SOHO WESTMINSTER NOTTING HILL GATE 
BAYSWATER QUEENSWAY HOLLAND PARK KNIGHTSBRIDGE PICCADILLY LEICESTER SQUARE 
GREEN PARK HYDE PARK EARLS COURT TURNHAM GREEN WC1 Euston Bloomsbury WC2 
Holborn Covent Garden Strand Fitzrovia Mayfair Soho Chinatown SW1 Victoria 
Belgravia http://www.londonmassagetherapy.org.uk Massage Tables Couches Chairs 
UK MASSAGE THERAPY THERAPEUTIC MASSAGE THAI MASSAGE TRADITIONAL THAI MASSAGE 
INDONESIAN MASSAGE HAWAIIAN MASSAGE COMPLEMENTARY HEALTH ALTERNATIVE THERAPIES 
COMPLEMENTARY MEDICINE ALTERNATIVE MEDICINE HOLISTIC MASSAGE BOWEN TECHNIQUE 
BOWEN THERAPY CRANIOSACRAL THERAPY CRANIO SACRAL THERAPY LONDON THERAPIST 
THERAPISTS LONDON MASSAGE TREATMENT TREATMENTS LONDON MASSAGE 
http://www.londontherapist.me.uk Hawaiian Huna Bodywork London 
http://www.londontherapist.org.uk Healthy Massage Treatment 
http://www.massagecentrallondon.co.uk Lomi Lomi Kahuna Oil Massage 
http://www.massagecentrallondon.me.uk Holistic Therapists London 
http://www.massagecentrallondon.org.uk Craniosacral Therapy London 
http://www.massageclinic.me.uk Manual Lymph Drainage London 
http://www.massageclinic.org.uk Massage Experienced Qualified Insured London 
http://www.massagelondon-home.me.uk London Therapy at Home or Clinic 
http://www.massagelondon-home.org.uk Home Wellness London Therapy 
http://www.massagelondoncentral.co.uk Complementary Alternative Medicine West 
London http://www.massagelondononline.me.uk Generic Domain Names Google Ranked 
Sale http://www.massagelondononline.org.uk Info on Massage Equipment Sale UK 
http://www.massagelondonpage.me.uk Information Site about Massage Therapy 
London UK http://www.massagelondonpage.org.uk London UK complementary therapies 
massage http://www.massagelondonweb.me.uk alternative health London UK thai 
massage http://www.massagelondonweb.org.uk http://www.massagelondonwest.co.uk 
traditional thai indonesian massage therapy London 
http://www.massagenorthlondon.co.uk http://www.massagepractitioner.co.uk 
http://www.massagepractitioner.me.uk http://www.massagepractitioner.org.uk 
http://www.massagesouthlondon.co.uk http://www.massagetherapylondon.co.uk 
http://www.massagetherapylondon.me.uk http://www.massagetherapylondon.org.uk 
http://www.massagewestlondon.co.uk http://www.massagewestlondon.me.uk 
http://www.massagewestlondon.org.uk http://www.mybodywork.me.uk 
http://www.mybodywork.org.uk http://www.mylondonmassage.me.uk 
http://www.mylondonmassage.org.uk http://www.mymassagenow.me.uk 
http://www.mymassagenow.org.uk http://www.myrub.me.uk http://www.myrub.org.uk 
http://www.mythaimassage.me.uk http://www.northlondonmassage.co.uk 
http://www.oilmassage.me.uk http://www.southlondonmassage.co.uk 
http://www.therapeuticmassagelondon.co.uk 
http://www.therapeuticmassagelondon.me.uk 
http://www.therapeuticmassagelondon.org.uk http://www.therapist.me.

[jira] Commented: (MPANNOUNCEMENT-14) [PATCH] Check if there is a SCM tag set for the project

2005-03-06 Thread Massage Therapy Centre London UK Health Thai Medicine Bowen (JIRA)
 [ 
http://jira.codehaus.org/browse/MPANNOUNCEMENT-14?page=comments#action_30499 ]
 
Massage Therapy Centre London UK Health Thai Medicine Bowen commented on 
MPANNOUNCEMENT-14:
---

http://www.massagelondon.org London Massage Therapist 
http://www.massagelondon.biz massage therapy West London UK 
http://www.massagelondon.me.uk London chair Massage UK 
http://www.health-resources.co.uk Medical Alternative Medicine resources in 
London England UK http://www.mobilephonesites.co.uk Nokia Free Mobile Phones 
Sites London England UK http://www.massagelondon.org.uk London Alternative 
Medicine UK http://www.massagelondon.info http://www.centrallondonmassage.co.uk 
W1 Massage Therapy Central London West End UK 
http://www.centrallondonmassage.me.uk W2 Paddington Therapeutic Massages 
Alternative Therapies London http://www.centrallondonmassage.org.uk W3 Acton 
Complementary Health Clinic London http://www.eastlondonmassage.co.uk E1 
Eastern Medicine London City of http://www.londonclinic.me.uk W4 Chiswick 
Health Clinic ME London http://www.londonmassagecentre.co.uk W5 Ealing Holistic 
Centre London UK http://www.londonmassagecentre.me.uk W6 Hammersmith Healing 
Massage London http://www.londonmassagecentre.org.uk W7 Hanwell Wellness Centre 
London http://www.londonmassageclinic.co.uk W8 Kensington Technique London 
Clinic http://www.londonmassageclinic.me.uk Thai Massage London Center W9 Maida 
Vale http://www.londonmassageclinic.org.uk W11 Notting Hill Alternative Health 
in London W10 http://www.londonmassagetherapy.co.uk W12 Shepherd's Shepherds 
Bush Complementary Therapies London http://www.londonmassagetherapy.me.uk W14 
West Kensington On Site Office Chair Massage London 
http://www.ilovemassage.co.uk http://www.ilovemassage.me.uk 
http://www.ilovemassage.org.uk http://www.imassage.info 
http://www.mywellness.me.uk http://www.therapeuticmassage.info 
http://www.massageme.co.uk http://www.mymedicine.co.uk 
http://www.mytherapy.co.uk http://www.mylove.org.uk EAST ACTON SHEPHERDS 
SHEPHER'S BUSH CHISWICK HAMMERSMITH FULHAM SOHO WESTMINSTER NOTTING HILL GATE 
BAYSWATER QUEENSWAY HOLLAND PARK KNIGHTSBRIDGE PICCADILLY LEICESTER SQUARE 
GREEN PARK HYDE PARK EARLS COURT TURNHAM GREEN WC1 Euston Bloomsbury WC2 
Holborn Covent Garden Strand Fitzrovia Mayfair Soho Chinatown SW1 Victoria 
Belgravia http://www.londonmassagetherapy.org.uk Massage Tables Couches Chairs 
UK MASSAGE THERAPY THERAPEUTIC MASSAGE THAI MASSAGE TRADITIONAL THAI MASSAGE 
INDONESIAN MASSAGE HAWAIIAN MASSAGE COMPLEMENTARY HEALTH ALTERNATIVE THERAPIES 
COMPLEMENTARY MEDICINE ALTERNATIVE MEDICINE HOLISTIC MASSAGE BOWEN TECHNIQUE 
BOWEN THERAPY CRANIOSACRAL THERAPY CRANIO SACRAL THERAPY LONDON THERAPIST 
THERAPISTS LONDON MASSAGE TREATMENT TREATMENTS LONDON MASSAGE 
http://www.londontherapist.me.uk Hawaiian Huna Bodywork London 
http://www.londontherapist.org.uk Healthy Massage Treatment 
http://www.massagecentrallondon.co.uk Lomi Lomi Kahuna Oil Massage 
http://www.massagecentrallondon.me.uk Holistic Therapists London 
http://www.massagecentrallondon.org.uk Craniosacral Therapy London 
http://www.massageclinic.me.uk Manual Lymph Drainage London 
http://www.massageclinic.org.uk Massage Experienced Qualified Insured London 
http://www.massagelondon-home.me.uk London Therapy at Home or Clinic 
http://www.massagelondon-home.org.uk Home Wellness London Therapy 
http://www.massagelondoncentral.co.uk Complementary Alternative Medicine West 
London http://www.massagelondononline.me.uk Generic Domain Names Google Ranked 
Sale http://www.massagelondononline.org.uk Info on Massage Equipment Sale UK 
http://www.massagelondonpage.me.uk Information Site about Massage Therapy 
London UK http://www.massagelondonpage.org.uk London UK complementary therapies 
massage http://www.massagelondonweb.me.uk alternative health London UK thai 
massage http://www.massagelondonweb.org.uk http://www.massagelondonwest.co.uk 
traditional thai indonesian massage therapy London 
http://www.massagenorthlondon.co.uk http://www.massagepractitioner.co.uk 
http://www.massagepractitioner.me.uk http://www.massagepractitioner.org.uk 
http://www.massagesouthlondon.co.uk http://www.massagetherapylondon.co.uk 
http://www.massagetherapylondon.me.uk http://www.massagetherapylondon.org.uk 
http://www.massagewestlondon.co.uk http://www.massagewestlondon.me.uk 
http://www.massagewestlondon.org.uk http://www.mybodywork.me.uk 
http://www.mybodywork.org.uk http://www.mylondonmassage.me.uk 
http://www.mylondonmassage.org.uk http://www.mymassagenow.me.uk 
http://www.mymassagenow.org.uk http://www.myrub.me.uk http://www.myrub.org.uk 
http://www.mythaimassage.me.uk http://www.northlondonmassage.co.uk 
http://www.oilmassage.me.uk http://www.southlondonmassage.co.uk 
http://www.therapeuticmassagelondon.co.uk 
http://www.therapeuticmassagelondon.me.uk 
http://www.therapeuticmassagelondon.org.uk http://www.therapi