Bad hash added as javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.jar.sha1

2011-08-19 Thread Mark Reynolds
My build broke this morning due to a "bad checksum". It looks like somebody added .sha1 hashes to this old artifact this morning and the one on the .jar file is wrong. http://repo1.maven.org/maven2/javax/xml/bind/jaxb-api/2.1/ That file has 2edb9610deb9527fce7a196e951296f8aacc4bda but the corre

Re: Interpolation of Pom Properties in Assembly Descriptor

2007-12-11 Thread Mark Reynolds
I'll assume this is a regression in the latest 2.2-beta-2-SNAPSHOT. http://jira.codehaus.org/browse/MASSEMBLY-256 On Nov 28, 2007 12:45 PM, Mark Reynolds <[EMAIL PROTECTED]> wrote: > That wasn't it, but thanks. > > > On Nov 27, 2007 12:36 PM, Wayne Fay <[EMAIL PRO

Re: Interpolation of Pom Properties in Assembly Descriptor

2007-11-28 Thread Mark Reynolds
Lundberg <[EMAIL PROTECTED]> wrote: > > Some time back I encountered a problem with properties in the pom using > > a dot-notation. I solved that by using camelHump-notation instead. In > > your case that would mean replacing "my.path" with "myPath". Not sure

Interpolation of Pom Properties in Assembly Descriptor

2007-11-26 Thread Mark Reynolds
I was using maven-assembly-plugin 2.2-SNAPSHOT and tried to switch to 2.2-beta-2-SNAPSHOT but encountered a problem. I reference properties from my pom in the assembly descriptor, like this: ... myapp/WEB-INF .. ... ${basedir}/target/config/somefile.conf $

Re: [vote] Re: maven-war-plugin 2.0.2

2006-11-08 Thread Mark Reynolds
A new maven-war-plugin-2.0.2-SNAPSHOT would do as a stopgap! Last one was in August. Who can punch out a new snapshot? On 10/24/06, Marcel Schutte <[EMAIL PROTECTED]> wrote: I would definitely like to see more plugin releases. Second best would be an overview of what priorities the maven 2 comm

Re: [CONTINUUM] working copy locked

2006-10-28 Thread Mark Reynolds
In a command prompt, go to continuum's working copy directory and execute the command "svn cleanup". On 10/28/06, Jorg Heymans <[EMAIL PROTECTED]> wrote: Hi, Our build is failing with this error : > > Build Error:

Re: Maven and Selenium?

2006-08-10 Thread Mark Reynolds
Personally, I hit the wall wilth HTMLUnit and had to move to Selenium RC. The problem was that HTMLUnit had problems as soon as I upgraded from Tapestry 4 to Tapestry 4.1 due to the inclusion of Dojo libraries. I assume these will be fixed eventually, but I am much happier having my tests run in t

Selective Deployment In Multi-Project

2006-08-10 Thread Mark Reynolds
Is it possible to configure individual projects to not deploy? I have one parent project with several child projects. Some of the child projects build jars then end up in a war built by another child project. I would like to run "mvn deploy" at the parent project level and have just the artifact

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-07-05 Thread Mark Reynolds
Re: How to install artifact created with assembly artifact into Continuum's local repository On 6/15/06, Mark Reynolds <[EMAIL PROTECTED]> wrote: I should have mentioned that I am not talking about the local repository used by maven (in .m2). Artifacts created with the assembly plugin

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-07-05 Thread Mark Reynolds
Barrie Treloar wrote: On 7/5/06, Mark Reynolds <[EMAIL PROTECTED]> wrote: I have changed my multi-project build so it only builds the parent pom without --non-recursive. There are some double negatives here. Do you mean you have deleted your other projects from the continuum build an

Re: Re: [m2] problem with manifest entries with new war plugin

2006-07-03 Thread Mark Reynolds
; From: news [mailto:[EMAIL PROTECTED] On Behalf Of Mark Reynolds > Sent: Thursday, June 29, 2006 7:48 PM > To: users@maven.apache.org > Subject: Re: [m2] problem with manifest entries with new war plugin > > Thanks, Mike. I did spend some time rereading all the associated bugs > a

Re: [m2] problem with manifest entries with new war plugin

2006-06-29 Thread Mark Reynolds
t first without full documentation. This is all part of the recent changes to the shared maven-archiver project and should be documented in MJAR-38 and MJAR-39 I believe. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Mark Reynolds Sent: Wednesday, June 28, 20

Re: [m2] problem with manifest entries with new war plugin

2006-06-29 Thread Mark Reynolds
Here it is. [DEBUG] org.apache.maven:maven-archiver:jar:2.1:runtime (selected for runtime) Jochen Wiedmann wrote: Mark Reynolds wrote: I read MWAR-34 and MWAR-35 but it is not clear to me what the intended behavior is as a result of fixing those bugs. Is it no longer supposed to add any

[m2] problem with manifest entries with new war plugin

2006-06-28 Thread Mark Reynolds
I see the war plugin was just updated to 2.0.1. It no longer automatically produces certain entries in the manifest that it did previously: Extension-Name: Specification-Title: Specification-Vendor: Implementation-Vendor: Implementation-Title: Implementation-Version: I

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-15 Thread Mark Reynolds
AIL PROTECTED]> wrote: Since it is a class file (as opposed to src/main/webapp content), I suspect that you need to exclude it from the compile, rather than trying to exclude it from the webapp. -Max Mark Reynolds wrote: > Just wondering if anyone knows the answer to this. Not sure if it is a

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-06-14 Thread Mark Reynolds
I be able to do this? Thanks, -- Mark Reynolds Mark Reynolds wrote: The primary artifact from each of my pom's are copied into Continuum's repository, but not the additional artifacts that are created using the assembly plugin. Is there a way to make this happen?

Re: [m2] How to add extra manifest entries to jar with assembly plugin

2006-06-14 Thread Mark Reynolds
Just wondering if anyone knows the answer to this. Not sure if it is a bug or I am just not doing it correctly. Thanks. -- Mark Reynolds Mark Reynolds wrote: I want to add an additional entry to the manifest of a jar I am creating using the assembly plugin in. It doesn't seem to work

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-14 Thread Mark Reynolds
Just wondering if anyone knows the answer to this. Not sure if it is a bug or if I am just not doing it right. Thanks. -- Mark Reynolds Mark Reynolds wrote: I have a single class I want to exclude from the my WAR file. It is named Install.class and is in the root package (no package). I

How to install artifact created with assembly artifact into Continuum's local repository

2006-06-14 Thread Mark Reynolds
The primary artifact from each of my pom's are copied into Continuum's repository, but not the additional artifacts that are created using the assembly plugin. Is there a way to make this happen?

[m2] How to add extra manifest entries to jar with assembly plugin

2006-06-13 Thread Mark Reynolds
I want to add an additional entry to the manifest of a jar I am creating using the assembly plugin in. It doesn't seem to work. Any idea what I am doing wrong? maven-assembly-plugin false package attached

[m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-13 Thread Mark Reynolds
I have a single class I want to exclude from the my WAR file. It is named Installer.class and is in the root package (no package). I have tried this: maven-war-plugin **/Install* and this: maven-war-plugin **/Install* but ne

Re: [m2] How to include a file in a WAR file's /META-INF folder?

2006-06-07 Thread Mark Reynolds
NM. Doh! Just put it under src/main/webapps/META-INF. Mark Reynolds wrote: Thanks for the quick response, however, my question has to do with how to add an arbitrary file to the WAR file's META-INF directory. I am creating a properties file with some metadata about the state of the s

Re: [m2] How to include a file in a WAR file's /META-INF folder?

2006-06-07 Thread Mark Reynolds
/META-INF. Thierry Barnier wrote: I put my jars in WEB-INF/lib Adding the following section to my POM file maven-war-plugin true ./lib Regards Thierry 2006/6/7, Mark Rey

[m2] How to include a file in a WAR file's /META-INF folder?

2006-06-07 Thread Mark Reynolds
If I include a file (not talking about MANIFEST.MF here) in src/main/resources/META-INF, it ends up in WEB-INF/classes/META-INF in the WAR file. What is the correct way to include a file in the WAR file's META-INF? -- Mark R ---

Problem upgrading from 1.0.3-SNAPSHOT (RC1) to 1.0.3

2006-04-25 Thread Mark Reynolds
I started from scratch with the first Continuum 1.0.3 RC (2006-03-16). I just upgraded to the released 1.0.3 following the instructions for upgrading from 1.0.2 to 1.0.3. I keep my working/build output directories separate from continuum dir, so I didn't have to change that. All my configurat

Re: Getting started with maven 2

2006-04-17 Thread Mark Reynolds
This validation will also be broken on some of the newer generic top-level domains like .museum and .travel. -- Mark R Steve Coy wrote: I got to the bottom of this. We have a "local" internal domain so that internal host names look like "blah.axegroup.local". The URL validator is barfing be

Re: Blame with Subversion

2006-03-20 Thread Mark Reynolds
committed the changes. _Mang Lau Mark Reynolds <[EMAIL PROTECTED]> Sent by: news <[EMAIL PROTECTED]> 03/20/2006 02:00 PM Please respond to continuum-users@maven.apache.org To continuum-users@maven.apache.org cc Subject Blame with Subversion I have recently setup Conti

Blame with Subversion

2006-03-20 Thread Mark Reynolds
I have recently setup Continuum and it is working fine. My SCM is subversion. For each build I can see the files that changed to trigger that build. Can Continuum also show the user(s) who committed the changes? Thank you. -- Mark R