Standalone system - changing the context

2008-01-14 Thread Darryl Bowler
On a standalone install of Continuum I want to change the url from http://servername.com:8080/continuum to http://servername.com:8080/ Is there documentation on how to do this? Also I want to so the same with Archiva, can anyone help? Regards

Continuum 1.1. and PostgreSQL?

2008-01-14 Thread Bjørn T Johansen
Is this a fine match? Or should one use a different database? -- Regards Bjørn T Johansen --- Someone wrote: I understand that if you play a Windows CD backwards you hear strange Satanic messages To

Re: Continuum 1.1. and PostgreSQL?

2008-01-14 Thread Bjørn T Johansen
Oki, thx... PostgreSQL it is... :) BTJ On Mon, 14 Jan 2008 10:15:23 -0600 Jesse McConnell [EMAIL PROTECTED] wrote: a lot of the development has been done on postgres fwiw and I worked with a production instance on postgres for quite some time as well On Jan 14, 2008 10:00 AM, Stephane

Re: Configure the notifier?

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 9:16 AM, Bjørn T Johansen [EMAIL PROTECTED] wrote: How do I configure the notifier? I.e. From address, what to include, etc? Does this help? http://maven.apache.org/continuum/docs/1.1/user_guides/notification/index.html -- Wendy

Re: Continuum 1.1. and PostgreSQL?

2008-01-14 Thread Jesse McConnell
a lot of the development has been done on postgres fwiw and I worked with a production instance on postgres for quite some time as well On Jan 14, 2008 10:00 AM, Stephane Nicoll [EMAIL PROTECTED] wrote: Yep. Our instance is running on postgresql and we have no problem so far. On 1/14/08,

Re: Continuum 1.1. and PostgreSQL?

2008-01-14 Thread Stephane Nicoll
Yep. Our instance is running on postgresql and we have no problem so far. On 1/14/08, Bjørn T Johansen [EMAIL PROTECTED] wrote: Is this a fine match? Or should one use a different database? -- Regards Bjørn T Johansen

Re: Configure the notifier?

2008-01-14 Thread Bjørn T Johansen
On Mon, 14 Jan 2008 09:20:12 -0700 Wendy Smoak [EMAIL PROTECTED] wrote: On Jan 14, 2008 9:16 AM, Bjørn T Johansen [EMAIL PROTECTED] wrote: How do I configure the notifier? I.e. From address, what to include, etc? Does this help?

Re: [c1.1] derby issue with .lck files not being cleaned up

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 4:41 PM, Mick Knutson [EMAIL PROTECTED] wrote: I am running tomcat 5.5.25 with continuum-1.1.war and a Derby DB. ... Every time run shutdown.sh to stop tomcat, then try to restart running startup.sh, the following files where not cleaned up:

[c1.1] derby issue with .lck files not being cleaned up

2008-01-14 Thread Mick Knutson
I am running tomcat 5.5.25 with continuum-1.1.war and a Derby DB. Now I am also running archiva 1.0 pointing to my Oracle DB. I am not using Oracle for both as there seems to still be a defect with continuum on Oracle 10g. But, Every time run shutdown.sh to stop tomcat, then try to restart

Re: [c-1.1] ORA-00910: specified length too long for its datatype

2008-01-14 Thread Mick Knutson
http://jira.codehaus.org/browse/CONTINUUM-1622 On Dec 29, 2007 8:41 AM, Mick Knutson [EMAIL PROTECTED] wrote: This happens at startup. And I can't get any further. I will open a ticket. On Dec 28, 2007 5:16 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On Dec 20, 2007 6:05 PM, Mick Knutson

Antwort: Re: - possible maven defect?

2008-01-14 Thread torsten . reinhard
Hi, joining your discussion I´ve another question: ... You should really have groupId, artifactId and version hard-coded in all POMs. ... In our project we have 2 parent poms, - one for technical belongings (definition of repositories, versions of plugins and so on) and - one for functional

Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM
But you are required to specify their .TLD file location, in web.xml: taglib taglib-urihttp://java.sun.com/jsp/jstl/xml/taglib-uri taglib-locationWEB-INF/x.tld/taglib-location /taglib The problem here is that it requires you to copy the x.tld file

Re: Working with Jakarta taglibs - question

2008-01-14 Thread nicolas de loof
The URI is defined by the taglib developers for example, Struts1 taglibs use : %@ taglib uri=http://struts.apache.org/tags-html; prefix=html % (@see http://struts.apache.org/1.x/userGuide/configuration.html) You then don't have to specify anything in your web.xml The web.xml taglib element is

Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM
I found the solution, for using Jakarta Taglibs in JBoss/Tomcat with Maven: 1. Place the following dependencies in the pom.xml of your Web Application project: dependency groupIdtaglibs/groupId artifactIdstandard/artifactId

Re: CVS and Branches

2008-01-14 Thread Guillaume Lederrey
I'm still trying to debug my connection problem. Maybe it doesnt have anything to do with the CVS branch ... I tried to use the SCM plugin directly to see if a more direct path to the error could give me an idea. I get the following : ** scm:validate [INFO] [scm:validate] [INFO] connectionUrl

Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM
You are correct. I removed the reference from the web.xml and it worked. To summarize what you said: 1. Place the taglibs jar file in your classpath 2. Use the [EMAIL PROTECTED] uri=...% with the string located in the uri element in the .TLD file of the taglib you wish to use. Just to verify:

Re: CVS and Branches

2008-01-14 Thread Guillaume Lederrey
I'm finally finding some things ... I updated the maven-scm-plugin to version 1.0 (from version 1.0-beta-3) and added : -Dmaven.scm.provider.cvs.implementation=cvs_native I now run into the next problem, which will be in another thread ... On 14/01/2008, Guillaume Lederrey [EMAIL PROTECTED]

Dependency between projects....

2008-01-14 Thread emerson cargnin
Hi guys, I have a question here about maven and dependency. I have two different projects, A and B, which I'm tagging separately. Inside the two projects I have clients modules (let's say AC and BC) which are used respectivelly by the other project. How in this situation should I change the

Re: Working with Jakarta taglibs - question

2008-01-14 Thread nicolas de loof
URI = Uniform Resource Identifier - just an identifier ! 2008/1/14, AsafM [EMAIL PROTECTED]: You are correct. I removed the reference from the web.xml and it worked. To summarize what you said: 1. Place the taglibs jar file in your classpath 2. Use the [EMAIL PROTECTED] uri=...% with the

SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread Guillaume Lederrey
I'm having problem with the maven-release-plugin. I'm trying to do a release with mvn -e -Dmaven.scm.provider.cvs.implementation=cvs_native release:prepare. I have the following configuration for the release plugin : plugin groupIdorg.apache.maven.plugins/groupId

Re: Dependency between projects....

2008-01-14 Thread Insitu
Hello, May I suggest that you break circular dependency ? Circular dependency usually means that some module is waiting to be born, and is badly handled by most build systems I think (at least most build systems I know). As for tagging, it depends on the scm pom tag and maven-release-plugin

Re: Release plugin for multiple projects with dependencyManagement in parent pom.xml

2008-01-14 Thread Guillaume Lederrey
On 11/01/2008, Simon Kitching [EMAIL PROTECTED] wrote: Aleksandras Skrynikovas [EMAIL PROTECTED] schrieb: Hi, I've browsed the mailing list for a solution but there doesn't seem to be a clear cut answer. Problem: in my app many projects depend on a single parent which uses

Re: Release plugin for multiple projects with dependencyManagement in parent pom.xml

2008-01-14 Thread Simon Kitching
Guillaume Lederrey [EMAIL PROTECTED] schrieb: On 11/01/2008, Simon Kitching [EMAIL PROTECTED] wrote: I've never really understood why the dependencyManagement section is useful at all. Why not just have each module declare the minimum version of a library that *it* needs in order

RE: Newbie: libraries out of date in repository

2008-01-14 Thread Hayes, Peter
I think you may be barking up the wrong tree here. The m2eclipse plugin ships with its own snapshot of the versions available in the public repository. It does not go out to the repositories in real time to support the Add Dependency feature. See the m2eclipse documentation for more

Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Ben Lidgey
Some of our builds here have started failing today as it is unable to download surefire-junit-2.4-SNAPSHOT artifact. Is there an issue with this? I have tried mvn -U -up with no success. Most developers are using Maven 2.0.7, but some of us are using 2.0.8 to prepare for rolling that out. Would

RE: SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread PARINI, MARY KAY [AG/1000]
I ran into this same problem (see my posting on 1/9/08). It only occurs when generateReleasePoms is true. If you look at the debug output, it does attempt to do a cvs add on release-pom.xml...however for some reason the add doesn't happen. It works okay when generateReleasePoms is false.

Re: SCM not adding file to CVS before commit when doing a release

2008-01-14 Thread Guillaume Lederrey
Thank you for your help ... I didnt see your post earlier. (too much traffic for me on this mailing-list). Did you find a clean solution to the problem ? Looking at your mail (http://www.nabble.com/Release-plug-in-fails-to-add-remove-release-pom.xml-in-CVS-to14721158s177.html) it seems that the

Re: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread supareno
Ben Lidgey a écrit : Some of our builds here have started failing today as it is unable to download surefire-junit-2.4-SNAPSHOT artifact. Is there an issue with this? I have tried mvn -U -up with no success. Most developers are using Maven 2.0.7, but some of us are using 2.0.8 to prepare for

Re: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Simon Kitching
Ben Lidgey [EMAIL PROTECTED] schrieb: Some of our builds here have started failing today as it is unable to download surefire-junit-2.4-SNAPSHOT artifact. Is there an issue with this? org.apache.maven.surefire:surefire-junit:jar:2.4-SNAPSHOT from the specified remote repositories:

Re: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Mauro Talevi
Ben Lidgey wrote: Some of our builds here have started failing today as it is unable to download surefire-junit-2.4-SNAPSHOT artifact. Is there an issue with this? I have tried mvn -U -up with no success. Most developers are using Maven 2.0.7, but some of us are using 2.0.8 to prepare for

RE: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Ben Lidgey
Thanks for that. How can I see what has changed as something is trying to download 2.4-SNAPSHOT all of a sudden? It is concerning from a build reproducibility point of view if something has changed without us knowing. My thought was that if a pom.xml does not specify a plugin version then

Re: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Wayne Fay
Grep your ~/.m2/repository/*.pom files for Surefire and SNAPSHOT. Or just mvn -X and grep the output for Surefire and SNAPSHOT. Apparently one of your dependencies (or plugins) is pulling it into your build. Since released plugins etc cannot depend on SNAPSHOTs, its hard to say where you're

RE: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Ben Lidgey
The particular pom uses appfuse so maybe there was something in there. Grepping the ~/.m2/repository/*.pom files only shows org/apache/maven/ artifacts. Ben -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: 14 January 2008 16:13 To: Maven Users List Subject: Re:

Build one module?

2008-01-14 Thread Labanca, Rick
I've got a messy maven 1 multiproject setup that I want to avoid tearing apart as I go to maven 2. One thing I can't really do is change do a dir and build because of the way the parent versioning works. That aside, I use module now at the top. Can I mvn and specify building just the one module?

RE: Is there a problem with surefire-junit-2.4?

2008-01-14 Thread Ben Lidgey
Oops, user error! Grepping properly does show a lot more. I think I have traced the problem to (a) messing about with maven-2.0.8 and archiva which has put the later plugins into our internal repository and (b) neither our pom or appfuse pom specifying the surefire version. I have fixed it by

global props in top pom?

2008-01-14 Thread Labanca, Rick
I know there are per user settings in maven2, but when a dev checks out a project there are some global props that should come with it. In maven1 I used a project.properties file. I tried a properties area in the top pom but the underlying modules don't see what I set there. Is there a

Re: global props in top pom?

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 10:01 AM, Labanca, Rick [EMAIL PROTECTED] wrote: I tried a properties area in the top pom but the underlying modules don't see what I set there. Is there a mechanism to do this that I'm missing? Actually, that should work. :) What did you try, and what makes you think it

Re: Build one module?

2008-01-14 Thread Wayne Fay
If you set up modules correctly, yes, this should work. It won't build *only* the dir1/dir2/pom.xml project, if that's what you want, but rather all 3 projects (root, dir1, dir2). pom.xml modulesmoduledir1/module/modules dir1/pom.xml modulesmoduledir2/module/modules You should probably also

Re: Best practices on versioning and releasing distro/installer

2008-01-14 Thread Kalle Korhonen
Thanks Wendy, I had missed that option. An interestering approach, and while it might be a bit dodgy in principle (as the modules would now appear as release candidates in your local repo only), it might just do the job. Still interested to hear if anybody has a better idea, but at least this'll

Setting Java System property

2008-01-14 Thread Matthew Tordoff
Hi all, I am having problems setting a Java System Property as part of my build. I have tried setting it in all kinds of places and the only one that I have found to work is setting it as part of the maven command line as follows: mvn compile -Dsystemprop=blah Setting in the above way is the

RE: global props in top pom?

2008-01-14 Thread Labanca, Rick
This in the top pom at the top level: properties globalVersion1/globalVersion /properties then in the module 1 level below pom version${globalVersion}/version It creates a jar with foo-${globalVersion} as the name. I get the feeling the reply will make

RE: Build one module?

2008-01-14 Thread Labanca, Rick
Well building just one is what I really do want, because the project is one big gnarly mess that I can't really redo. In maven1 I could change to the particular directory and build there, but in maven2 I don't think that will work. The driving issue is the version tag in each of these. I want

Re: global props in top pom?

2008-01-14 Thread Heinrich Nirschl
On Jan 14, 2008 6:57 PM, Labanca, Rick [EMAIL PROTECTED] wrote: This in the top pom at the top level: properties globalVersion1/globalVersion /properties then in the module 1 level below pom version${globalVersion}/version It creates a jar with

Re: global props in top pom?

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 10:57 AM, Labanca, Rick [EMAIL PROTECTED] wrote: This in the top pom at the top level: properties globalVersion1/globalVersion /properties then in the module 1 level below pom version${globalVersion}/version Version is allowed in

Re: Build one module?

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 11:01 AM, Labanca, Rick [EMAIL PROTECTED] wrote: In maven1 I could change to the particular directory and build there, but in maven2 I don't think that will work. The driving issue is the version tag in each of these. I want these to be globally set, and the only way to do

[m2][archiva1] Issue deploying to Archiva

2008-01-14 Thread Mick Knutson
I can deploy my site docs to my remote server just fine, but when I try to deploy a module to my archiva REP, I get a 401 error. *pom.xml:* !-- use the following if you're not using a snapshot version. -- repository iddap.internal/id nameInternal Release

Re: [m2][archiva1] Issue deploying to Archiva

2008-01-14 Thread Mick Knutson
Here is the error I get: [INFO] [deploy:deploy] altDeploymentRepository = null Uploading: http://rc-sun66e.ut.dentegra.lab:8080/archiva/repository/internal//org/delta/esp/dap/1.0.1/dap-1.0.1.pom Jan 14, 2008 10:33:10 AM org.apache.commons.httpclient.HttpMethodBaseprocessRedirectResponse INFO:

RE: Build one module?

2008-01-14 Thread Labanca, Rick
I didn't know about that release plugin but it's too much for our project right now. I'll tell you 1 vs 2... In maven1 we do have a top level CurrentVersion that all subprojects use, so they always match when checked out. And each file didn't have to be changed so the versions matched, so a

Re: Eclipse has a trouble with processing .classpath file generated by maven Eclipse plug-in

2008-01-14 Thread Steinar Bang
Huang [EMAIL PROTECTED]: Has anyone encountered this issue when using maven2 Eclipse plug-in? Basically, after I use it to generate .classpath and .project file for a project, Eclipse IDE has a trouble with processing .classpath and complains: cannot next blah_blah_blah.../resources

Release 2.3 of javacc maven plugin

2008-01-14 Thread Paul Gier
Hi Everyone, I'm planning to do a release of the javacc maven plugin (http://mojo.codehaus.org/javacc-maven-plugin/) sometime next week. If you use this plugin or are interested in it, I encourage you to try out the 2.3-SNAPSHOT that is available in the codehaus snapshots repository.

Re: [m2][archiva1] Issue deploying to Archiva

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 11:27 AM, Mick Knutson [EMAIL PROTECTED] wrote: I can deploy my site docs to my remote server just fine, but when I try to deploy a module to my archiva REP, I get a 401 error. Please choose *one* list and ask your question there. Someone will tell you if you're in the wrong

[archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
I have found the xmlbeans plugin from the maven-repository, but archiva can't get it as it does not exist in my mirror: [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artifact. GroupId: org.codehaus.mojo ArtifactId:

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 12:51 PM, Mick Knutson [EMAIL PROTECTED] wrote: I have found the xmlbeans plugin from the maven-repository, but archiva can't get it as it does not exist in my mirror: [ERROR] BUILD ERROR [INFO]

Re: Eclipse has a trouble with processing .classpath file generated by maven Eclipse plug-in

2008-01-14 Thread Huang
we're using eclipse 3.3 version On Jan 14, 2008 10:53 AM, Steinar Bang [EMAIL PROTECTED] wrote: Huang [EMAIL PROTECTED]: Has anyone encountered this issue when using maven2 Eclipse plug-in? Basically, after I use it to generate .classpath and .project file for a project, Eclipse IDE has

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
If I go to: http://rc-sun66e.ut.dentegra.lab:8080/archiva/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans-maven-plugin-2.3.0.jar (I get a 404 Not Found error) HTTP Status 404 - /archiva/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans- maven-plugin-2.3.0.jar

Trouble with Maven 2.0.8 ans site

2008-01-14 Thread Martin Alejandro Villalobos
Hi, I have a problem since a few days. I have a lot projects building with Maven, a few days ago, I updated the Maven version to 2.0.8 and magically, when I execute mvn site the links to modules and parent are wrong. The have appended the path to the working directory from the site is

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 1:45 PM, Mick Knutson [EMAIL PROTECTED] wrote: If I go to: http://rc-sun66e.ut.dentegra.lab:8080/archiva/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans-maven-plugin-2.3.0.jar (I get a 404 Not Found error) The url should have .../archiva/repository/[repo-id]/]org... in

Resources from classpath in JAR

2008-01-14 Thread dddzzz
How can I make maven2 to include files (like .xml and .property) in JAR without adding resource include in POM. -- View this message in context: http://www.nabble.com/Resources-from-classpath-in-JAR-tp14814993s177p14814993.html Sent from the Maven - Users mailing list archive at Nabble.com.

Sources in JAR

2008-01-14 Thread dddzzz
How can I make maven2 to include sources in JAR -- View this message in context: http://www.nabble.com/Sources-in-JAR-tp14814994s177p14814994.html Sent from the Maven - Users mailing list archive at Nabble.com. - To

poll for 'way of integrating' dependency-analyzer graph report

2008-01-14 Thread aldana
hi, we already provide a rich-client app (see http://www.jfrog.org/sites/dep-analyzer/latest/), which does visualize the maven dependency graph. we think it would be a good way to provide this through a report plugin, too. but we are a bit uncertain about the way what kind of integration we

Jar plus multiple webapps

2008-01-14 Thread Chris
In our project we have a central library that gets called by multiple webapps. The bulk of the code is in the central library. The various webapps perform different functions using the code in the library. Also, we have a completely different set of webapps that we custom-develop for

Assembly Plugin - unwanted directories in target output directory

2008-01-14 Thread tadamski
This section of my assembly.xml descriptor seems to place 5 directories into my root directory I create and .zip up, which is then placed into the target directory. This section allows me to specify where my dependency jars are, but it creates the 5 directories which are my main jars. Any help

Re: Sources in JAR

2008-01-14 Thread Jeff MAURY
very simple: declare the source folder as a resource folder Jeff On Jan 14, 2008 10:25 PM, dddzzz [EMAIL PROTECTED] wrote: How can I make maven2 to include sources in JAR -- View this message in context: http://www.nabble.com/Sources-in-JAR-tp14814994s177p14814994.html Sent from

Re: poll for 'way of integrating' dependency-analyzer graph report

2008-01-14 Thread Michael McCallum
why not all three? give the user the choice... but minimise the deps so if you only want the picture that don't have to download the 5mb... On Tue, 15 Jan 2008 10:26:39 aldana wrote: hi, we already provide a rich-client app (see http://www.jfrog.org/sites/dep-analyzer/latest/), which does

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
Also, I have only configured 3 remote repositories in the http://rc-sun66e.ut.dentegra.lab:8080/archiva/admin/repositories.action(Repositories Page) Identifier central Name Maven Central Repository URL http://repo1.maven.org/maven2 Type Maven 2.x Repository Identifier codehaus-snapshot Name

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
http://rc-sun66e.ut.dentegra.lab:8080/archiva/internal/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans-maven-plugin-2.3.0.jar Still results in 404 error On Jan 14, 2008 12:55 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On Jan 14, 2008 1:45 PM, Mick Knutson [EMAIL PROTECTED] wrote: If I

Re: Jar plus multiple webapps

2008-01-14 Thread Wayne Fay
There is probably no archetype that will work perfectly for the specific way you want to organize your various projects. In general, I would make a few projects: 1. A central library jar that is built and released on its own 2. A webapp project for each of your webapps (this may be a single

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 3:24 PM, Mick Knutson [EMAIL PROTECTED] wrote: Also, I have only configured 3 remote repositories in the http://rc-sun66e.ut.dentegra.lab:8080/archiva/admin/repositories.action(Repositories Page) ... Is that all I have to do? No, you also need proxy connectors. -- Wendy

Disk Space Optimization with Snapshots

2008-01-14 Thread Robert Winch
I currently experience disk space issues because build are frequent within my company. This happens on our build boxes which use a CI Server to build and then deploy our projects to a maven repository. The build box's local repository contains a lot of old snapshot builds which we no longer need.

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
I also just tried: http://rc-sun66e.ut.dentegra.lab:8080/archiva/repository/internal/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans-maven-plugin-2.3.0.jar Error 404 Not Found The following resource does not exist:

Re: Disk Space Optimization with Snapshots

2008-01-14 Thread Wayne Fay
Archiva has support for this, see: http://jira.codehaus.org/browse/MRM-275 Wayne On 1/14/08, Robert Winch [EMAIL PROTECTED] wrote: I currently experience disk space issues because build are frequent within my company. This happens on our build boxes which use a CI Server to build and then

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Wendy Smoak
On Jan 14, 2008 3:35 PM, Mick Knutson [EMAIL PROTECTED] wrote: I also just tried: http://rc-sun66e.ut.dentegra.lab:8080/archiva/repository/internal/org/codehaus/mojo/xmlbeans-maven-plugin/2.3.0/xmlbeans-maven-plugin-2.3.0.jar Error 404 Not Found The following resource does not exist:

Re: [archiva 1] Unable to download the artifact from any repository

2008-01-14 Thread Mick Knutson
Ok, I actually bounced Tomcat, and the thing came alive. I will open another email as to why I was bouncing Tomcat here in a sec. On Jan 14, 2008 2:43 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On Jan 14, 2008 3:35 PM, Mick Knutson [EMAIL PROTECTED] wrote: I also just tried:

Re: Disk Space Optimization with Snapshots

2008-01-14 Thread Robert Winch
Thank you for your quick reply. Is there a way to do this for a local repository as well? Thanks in advance, Rob On Jan 14, 2008 4:40 PM, Wayne Fay [EMAIL PROTECTED] wrote: Archiva has support for this, see: http://jira.codehaus.org/browse/MRM-275 Wayne On 1/14/08, Robert Winch [EMAIL

Re: [c1.1] derby issue with .lck files not being cleaned up

2008-01-14 Thread Mick Knutson
Yes embedded Derby. So How do I determine why the shutdown.sh is not shutting down Derby correctly? I used the default installation as per the quick start guide for Tomcat and Derby. Is there something else I need to do? ps, http://jira.codehaus.org/browse/CONTINUUM-1622 On Jan 14, 2008 3:56

Re: Disk Space Optimization with Snapshots

2008-01-14 Thread Wayne Fay
I know someone posted a bash script at some point... You'll need to check the mail list archives (check Nabble.com). If you find it, reply back with the subject and date, or a direct link, so other people can find it too. ;-) Wayne On 1/14/08, Robert Winch [EMAIL PROTECTED] wrote: Thank you for

Re: Coverage report of web application integration test with cobertura-maven-plugin

2008-01-14 Thread Joshua Spiewak
So in a simplistic attempt to get this to work, I looked at the Clover plugin to see what it did. I tried changing the execute phase of CoberturaCheckMojo and CoberturaReportMojo to verify, like the Clover mojos of the same function. This fails in the package phase: [INFO] Error configuring:

Re: Sources in JAR

2008-01-14 Thread Michael McCallum
why would you want to? On Tue, 15 Jan 2008 11:09:40 Jeff MAURY wrote: very simple: declare the source folder as a resource folder Jeff On Jan 14, 2008 10:25 PM, dddzzz [EMAIL PROTECTED] wrote: How can I make maven2 to include sources in JAR -- View this message in context:

Migrate a J2ME Ant build?

2008-01-14 Thread Clifton
Can somebody help me find the quickest easiest way to migrate a custom J2ME Ant build to Maven? We have deliverable in two weeks and I have roughly 4-6hrs top to devote to this. (Maybe more if I work off clock.) I tried the pyx4me plugin but had no luck running it. There's a bug somewhere around

Re: Migrate a J2ME Ant build?

2008-01-14 Thread Wayne Fay
Can I ask why you're looking to migrate? If you're completely new to Maven, it may be challenging to meet your requirements (4-6hrs etc), especially if plugins aren't working. I haven't done much with J2ME much less with Maven, so I'm going to be zero help. Wayne On 1/14/08, Clifton [EMAIL

Re: Disk Space Optimization with Snapshots

2008-01-14 Thread Robert Winch
As requested I have included two postings in addition to the Archiva issue provided by Wayne. Artifactory (artifactory.sf.net) - for proxies http://www.nabble.com/forum/ViewPost.jtp?post=9574480framed=y The forum posting about the script Wayne mentioned (deletes files older than x number of

Re: Resources from classpath in JAR

2008-01-14 Thread Heinrich Nirschl
On Jan 14, 2008 10:24 PM, dddzzz [EMAIL PROTECTED] wrote: How can I make maven2 to include files (like .xml and .property) in JAR without adding resource include in POM. Put them into src/main/resources. - To unsubscribe,

call ant target depending on the executed phase

2008-01-14 Thread Benoit Decherf
Hi, I'm working on the migration from a proprietary build system (based on ant) to maven for all the projects. So to do it simple, I just want on a first time to let maven manage the dependencies, ant call the modified ant for compiling, packaging, etc. So, I add some plugins: - in clean