Re: Status of repo1.maven.org

2008-10-31 Thread KC Baltz
The problem is likely caused by a legal issue between Sprint and Cogent. http://tinyurl.com/5gnysk > On October 30 at 4:30 pm Sprint-Nextel severed its Internet connection > to Cogent thereby partitioning the Internet. > -- View this message in context: http://www.nabble.com/Status-of-re

Re: [m2] Need help using new plugin (qalab)

2006-09-13 Thread KC Baltz
Thanks, that helped. I notice that you have the checkstyle merge goal changed to the pre-site phase. How do you ensure that checkstyle has run at that point. I have a bootstrapping issue when I use that setting where qalab can't find the checkstyle results file. I changed mine to post-site.

[m2] Need help using new plugin (qalab)

2006-09-12 Thread KC Baltz
I'm trying to use a new plugin, qalab, which gives us metrics from build to build. I've got it working on my local box, but I can't seem to get it working on the build machine. I get the following error when I try to call 'mvn qalab:merge' on the build box. [INFO] --

[m2] How to fix/customize Checkstyle report output?

2006-07-18 Thread KC Baltz
The checkstyle report produced by the site plugin has some lines that are way to wide, with content I don't care about. How can I go about either wrapping the lines or removing the content entirely? The content in question is the list of options to each checkstyle rule. K.C.

RE: issue with mvn clean install

2006-04-28 Thread KC Baltz
Just in case that doesn't solve it, I'm always suspicious of folder names with spaces in them. I've never felt 100% confident they would work with all tools. -Original Message- From: Simon Kitching [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 2:42 AM To: Maven Users List

RE: [m2] Need help with dependency issue + Eclipse Plugin + Displaytag + beanutils

2006-04-26 Thread KC Baltz
It looks like the problem was that I was explicitly listing commnons-digester-1.5 as a dependency, and it appears to depend on beanutils-1.6. Removing that dependency (I think struts brings it in as well) fixed the problem. K.C. -Original Message- From: KC Baltz [mailto:[EMAIL

[m2] Need help with dependency issue + Eclipse Plugin + Displaytag + beanutils

2006-04-26 Thread KC Baltz
I'm having a strange difficulty involving the Eclipse plugin, displaytag-1.1, and beanutils. The displaytag-1.1 tag library depends on beanutils 1.7. When I run: mvn -U -Dmaven.test.skip=true clean compile eclipse:clean eclipse:eclipse -Dwtpversion=1.0 -DdownloadSources=false it produces

RE: [m2] Setup a jndi environment for testing (surfire)

2006-04-12 Thread KC Baltz
Check out the JUnit DataSource Helper package at JavaRanch: http://www.javaranch.com/codebarn.jsp It'll allow you to configure a DataSource in a simple JNDI context via a properties file. And you can bind other properties using the standard JNDI API. K.C. -Original Message- From: Pa

RE: Ruby on Maven / problem with repository - Maven 2.0.3

2006-04-06 Thread KC Baltz
Hello, Where did you put the definition you mention in 1) below? I would expect it to go in your %HOMEPATH%\.m2\settings.xml file. K.C. -Original Message- From: Julio Oliveira [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 8:07 AM To: Maven Users List Subject: Ruby on Mave

RE: [M2] Adding downloaded files to a war

2006-03-28 Thread KC Baltz
I think the trick is to unpack the downloaded ZIP into the right directory. I have the following in my pom. Note the : org.codehaus.mojo dependency-maven-plugin unpack

[m2] Eclipse Plugin: Anyway to exclude a reactor dependency from the project list?

2006-03-27 Thread KC Baltz
Our web project has a custom tag library for one of the sub-projects and the Eclipse Sysdeo Tomcat plugin doesn't handle it well if it's included directly as a project link instead of as a jar from the M2_REPO. Since it's otherwise useful to have project links that the eclipse plugin generates,

RE: [m2] Should eclipse:eclipse be generating project links?

2006-03-17 Thread KC Baltz
. Not sure what the exact mechanism is though... -Stephen On 3/17/06, KC Baltz <[EMAIL PROTECTED]> wrote: > This isn't working for me. I've been running it from the root directory (the > one containing the master pom). It definitely does a reactor build, but the > g

RE: [m2] Should eclipse:eclipse be generating project links?

2006-03-17 Thread KC Baltz
aven Users List Subject: Re: [m2] Should eclipse:eclipse be generating project links? Yup it should work, just make sure you run eclipse:eclipse on the master pom because it won't work if you execute it on a children project. On 3/17/06, KC Baltz <[EMAIL PROTECTED]> wrote: > I have

[m2] Should eclipse:eclipse be generating project links?

2006-03-17 Thread KC Baltz
I have a multi-module project setup in the classic fashion: master pom | ---A ---B ---C Where projects A, B, and C have the Master as a parent and C depends on B and A. Is the eclipe:eclipse plugin supposed to be configuring my Eclipse projects with projects A and B on the classpath of C?

RE: Pulling in pages from another WAR with maven 2

2006-03-14 Thread KC Baltz
See this thread: http://www.nabble.com/-m202-common-resources-between-2-war-modules--t1220038.html#a3228555 K.C. -Original Message- From: Andrew Watters [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 9:11 AM To: Maven Users List Subject: Pulling in pages from another WAR with ma

RE: [m2] Has anyone gotten the maven-taglib plugin to produce taglibdoc?

2006-03-14 Thread KC Baltz
b.sourceforge.net/m2/ net.sourceforge.maven-taglib maven-taglib-plugin Bernd KC Baltz schrieb: > I'd like to produce taglibdoc for our custom taglibs (E.g. > http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html). It looks > like someone created a Maven plugin for doing just that (

[m2] Has anyone gotten the maven-taglib plugin to produce taglibdoc?

2006-03-14 Thread KC Baltz
I'd like to produce taglibdoc for our custom taglibs (E.g. http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html). It looks like someone created a Maven plugin for doing just that ( http://sourceforge.net/projects/maven-taglib/), but I can't get it to work in Maven2. Anyone else h

RE: How can I able to use maven-compiler-plugin with ${maven.compiler.debug}

2006-03-08 Thread KC Baltz
In Maven2, the replacement for the properties file is the "profiles.xml" file. If you put it in the same directory as your pom.xml, you can override system properties. Try putting the following into profiles.xml in the root directory of your project: true

[m2] Is Eclipse WTP 1.0.1 support working in the eclipse:eclipse plugin yet?

2006-03-08 Thread KC Baltz
I'm trying to use the 1.0.1 release of the Eclipse Web Tools with my Maven web project and not having much luck. I've called maven with the following: mvn eclipse:clean eclipse:eclipse -Dwtpversion=1.0 It seems to be happy with that and even says: [INFO] [eclipse:eclipse] [INFO] Adding sup

RE: [m202] common resources between 2 war modules?

2006-03-03 Thread KC Baltz
I should add that a problem I still haven't solved is how to make this work in Eclipse in a manner where I don't have to re-run the maven build every time I edit a JSP. If you figure that out, please share with the list. K.C. -Original Message----- From: KC Baltz [mailto:[EMAIL

RE: [m202] common resources between 2 war modules?

2006-03-03 Thread KC Baltz
I've seen this suggested and it works for me: http://mojo.codehaus.org/dependency-maven-plugin/introduction.html The idea is to have a third project upon which war1 and war2 depend. When war1 and war2 are built, they unpack the contents of the common project into the webapp. I've also see the

RE: import statements in Eclipse and maven2

2006-02-28 Thread KC Baltz
dencies in your pom.xml file without needing to regenerate the .classpath file every time you add a dependency. -K -- Kathryn Huxtable Middleware Architect Core Middleware Information Technology, a division of Information Services The University of Kansas On 2/27/06 6:41 PM, "KC Baltz"

RE: import statements in Eclipse and maven2

2006-02-27 Thread KC Baltz
http://maven.apache.org/guides/mini/guide-ide-eclipse.html -Original Message- From: Ashish Srivastava [mailto:[EMAIL PROTECTED] Sent: Monday, February 27, 2006 4:24 PM To: users@maven.apache.org Subject: import statements in Eclipse and maven2 Hi, I am using maven2 plugin on Eclipse

RE: [m2] How do I stop using a SNAPSHOT from my local repository?

2006-02-27 Thread KC Baltz
ks.html. Why isn't it in the Project Descriptor docs? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 10:04 PM To: Maven Users List Subject: Re: [m2] How do I stop using a SNAPSHOT from my local repository? On 2/24/06, KC Baltz <[E

[m2] How do I stop using a SNAPSHOT from my local repository?

2006-02-24 Thread KC Baltz
We have several projects here that depend on a common "core" project. When I'm making changes to that "core", I install them in my local repository so I can test them in the dependent projects. However, when I'm done and commit them to CVS (which then causes them to be deployed to our internal

RE: using a webapp to test a project

2006-02-21 Thread KC Baltz
n the same eclipse project. On Tue, 2006-02-21 at 13:19 -0800, KC Baltz wrote: > The simplest thing to do would be to create a working webapp in Maven first, > one that has no dependency on the library you want to test. A good way to do > this would be with the archetype for webapps.

RE: using a webapp to test a project

2006-02-21 Thread KC Baltz
The simplest thing to do would be to create a working webapp in Maven first, one that has no dependency on the library you want to test. A good way to do this would be with the archetype for webapps. Once that works, add a to your webapp that references the library. That should allow you t

RE: taglibs vs jstl

2006-02-17 Thread KC Baltz
Right. javax is the interface, taglibs.standard is the implementation. I have the following in my pom: taglibs standard 1.1.2 javax.servlet jstl 1.1.2 K.C. -Original Messa

RE: m2 -- Ready for Prime Time, yet?

2006-02-14 Thread KC Baltz
I'll add that I looked over a colleague's shoulder when he opened a Maven2 project in NetBeans 5.0 with the Mevenide plugin and was very impressed. It figured everything out without creating a separate Ant build.xml like NB normally does. I'm not sure how solid it was for roundtrip project man

RE: [mvn] sample webapp

2006-02-09 Thread KC Baltz
To reference javax.servlet, after in your pom, add: javax.servlet servlet-api 2.4 provided That tells it you need servlet-api to compile, but it's provided for you at runtime by th

RE: Where are Maven2 command line args documented?

2006-02-09 Thread KC Baltz
Have you tried: mvn -help K.C. -Original Message- From: Chris Markle [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 10:23 PM To: Maven Users List Subject: Where are Maven2 command line args documented? Where are Maven2 command line args documented? Chris ---

RE: eclipse and the target directory

2006-02-08 Thread KC Baltz
You might try right-clicking on the target folder in Eclipse and selecting Properties. Check the "Derived" checkbox and see if that helps. BTW, that should also exclude any files in there from appearing in a list like you get with Ctrl-Shift-R (Open Resource). K.C. -Original Message--

Best practice for choosing a groupId?

2006-02-03 Thread KC Baltz
Are there any guidelines for choosing a groupId for a project? It seems like there are several techniques on ibiblio and I think some of it has historical motivation. For example, the Jakarta Commons projects all seem to use a groupId that matches artifactId. So you end up with commons-uti

RE: [m2] Best practice for in-place webapp development?

2006-01-23 Thread KC Baltz
r-plugin/inplace-mojo.html > http://blogs.codehaus.org/people/brett/archives/001306_developing_with_jet > ty_where_have_you_been_all_my_life.html > > > On 1/23/06, KC Baltz <[EMAIL PROTECTED]> wrote: > > I'd like to convert our project to use M2 for web app develop

[m2] Best practice for in-place webapp development?

2006-01-23 Thread KC Baltz
I'd like to convert our project to use M2 for web app development and I've run into a bit of a snag. Right now, we use Eclipse with the Sysdeo plugin so we can run our webapp in Tomcat, directly from Eclipse without any sort of deployment/copying steps. The files we edit are the ones Tomcat is

RE: call for testers: scp wagon

2006-01-09 Thread KC Baltz
p wagon Hi KC, At this point we will be releasing the code as is. Please let us know if you continue to experience it after the 2.0.2 release, and we will pursue this in greater depth again with the jsch developers. - Brett On 1/10/06, KC Baltz <[EMAIL PROTECTED]> wrote: > No, I

RE: call for testers: scp wagon

2006-01-09 Thread KC Baltz
t Subject: Re: call for testers: scp wagon When putting them into your 2.0.1 lib directory, did you delete the equivalent jars that were already there? -Stephen On 1/6/06, KC Baltz <[EMAIL PROTECTED]> wrote: > This is failing for me. I am continuing to get the "session is down"

RE: call for testers: scp wagon

2006-01-06 Thread KC Baltz
This is failing for me. I am continuing to get the "session is down" exception. I'm not sure what debugging information you'd like to see. I'm getting the same basic stack trace I've always gotten with a root cause like this: Caused by: com.jcraft.jsch.JSchException: session is down

[m2] Any support for Cruise Control yet?

2005-11-18 Thread KC Baltz
We use Cruise Control here and I'm trying to introduce Maven2. Is this possible? K.C.

RE: [M2] Eclipse doesn't refresh properly after running mvn as an external command?

2005-11-17 Thread KC Baltz
of ant, are you running ant as an external task, or are you using the ant plugin? If the latter, I'd assume that the project refresh is just built into the plugin ala JavaCore. This is certainly something you should mention to Mevenide when they add 2.0 support. On 11/16/05, Kenney Westerhof &

[M2] Eclipse doesn't refresh properly after running mvn as an external command?

2005-11-16 Thread KC Baltz
I suspect this is a bug in Eclipse, not maven, but I wanted to see if anyone else had experienced it. I have two projects in Eclipse, and one (project B) depends on the other (project A). I ran 'mvn eclipse:eclipse' for both and have my classpath set to depend on the M2_REPO. I tried ma

RE: JSTL tld dependencies

2005-11-14 Thread KC Baltz
The TLD is usually packaged with the Jar files for the JSTL. First of all, make sure you are getting standard-???.jar and jstl-???.jar in your war. Then, do the following on standard.jar to convince yourself the tlds exist: jar -tf standard.jar You should see something like the following: .

[m2]Need help with antrun (ClassCastException)

2005-11-08 Thread KC Baltz
I'm getting a ClassCastException trying to execute my build.xml file. Can anyone figure out why? Embedded error: The following error occurred while executing this line: C:\copart\handheld\build.xml:12: java.lang.ClassCastException: org.apache.maven. artifact.manager.DefaultWagonManager My

[m2] How can I deploy the maven-tomcat-plugin to my local remote repository?

2005-11-08 Thread KC Baltz
I've pulled the Tomcat plugin from codehaus via svn and had good success installing and using it. Now I'd like to deploy it to our internal remote repository. I can run the deploy (not tomcat:deploy) goal and everything appears to work. however, when I delete the maven-tomcat-plugin directory

[M2] Why is "debug" deprecated for maven-compiler-plugin?

2005-11-04 Thread KC Baltz
The documentation for the compiler plugin says that the "debug" parameter is deprecated. Why is this and what's the recommended replacement? http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html K.C.

RE: [m2] How to exclude WEB-INF/lib/*.jar without excluding dependentjars?

2005-11-02 Thread KC Baltz
still some plugins that have not been released) Best Regards / Cordialement, Fabrice BELLINGARD DINQ/DSIN/INSI/EATE/IDVS/AIDV (+33) (01 61) 45 15 91 - [EMAIL PROTECTED]

RE: [m2] Help! scp, sftp deploy is failing

2005-11-01 Thread KC Baltz
n is down" issue just yet, unfortunately. There is another alternative: scpexe, or standard ftp. See the documentation for details. - Brett On 11/2/05, KC Baltz <[EMAIL PROTECTED]> wrote: > I'm trying to switch our development to Maven2 and I'm having trouble because >

RE: [m2] How to exclude WEB-INF/lib/*.jar without excluding dependent jars?

2005-11-01 Thread KC Baltz
to exclude WEB-INF/lib/*.jar without excluding dependent jars? try WEB-INF/lib/*.jar On 11/2/05, KC Baltz <[EMAIL PROTECTED]> wrote: > I'm in the process of converting a webapp from Ant builds to Maven2 builds > and I'm running into a hitch with the packaging.

[m2] Help! scp, sftp deploy is failing

2005-11-01 Thread KC Baltz
I'm trying to switch our development to Maven2 and I'm having trouble because I can't seem to get scp or sftp to work with Maven. scp dies because it can't cd to my home directory on the target server (Home directories aren't mounted on that server). It looks like the following: : Upload

RE: Installing Commercial Jars and missing POM XML files

2005-11-01 Thread KC Baltz
Peter, Your MvnCreateLocalPom works well, but I think it needed a small fix and an enhancement. You have two places in dumpPom(String, String) where groupId is used to create a path. I appended .replace('.', '/') to the groupId to handle dotted groups. Also, when you actually create the po

[m2] How to exclude WEB-INF/lib/*.jar without excluding dependent jars?

2005-11-01 Thread KC Baltz
I'm in the process of converting a webapp from Ant builds to Maven2 builds and I'm running into a hitch with the packaging. When I first built the webapp, it put duplicate jars in my WEB-INF/lib since they exist there in my source directory and it also included the jars defined in my pom depend

Inconsistency between JAR and Assembly

2005-10-31 Thread KC Baltz
I'm trying to package my application with its dependencies such that the main jar file is executable. That means have a Class Path entry in the Manifest of the main jar. I can get this to work with the following in my pom.xml: org.apache.maven.plugins

RE: How are SNAPSHOT dependency downloads handled?

2005-09-23 Thread KC Baltz
exist. --jason > -Original Message- > From: KC Baltz [mailto:[EMAIL PROTECTED] > Sent: Friday, September 23, 2005 11:11 AM > To: Maven Users List (E-mail) > Subject: How are SNAPSHOT dependency downloads handled? > > [Using Maven 1.1-beta-2] > I'm trying to

How are SNAPSHOT dependency downloads handled?

2005-09-23 Thread KC Baltz
[Using Maven 1.1-beta-2] I'm trying to use SNAPSHOT to get the latest version of an internally developed JAR from our in-house remote repository . It appears to work (I.e. I do end up with the latest version), but not without dumping a number of errors to the screen about how it can't find my j

How to escape ${ in Jelly/Jexl ?

2005-09-19 Thread KC Baltz
We are in the process of migrating to Maven from Ant and I'm having a bit of trouble replicating in Maven a behavior we have in our Ant build. We use the Ant filtered copy mechanism where tokens are replaced with values. The copy task lets you specify your token delimiters and we chose ${ and

RE: How do I package dependent jars in my distribution?

2005-09-14 Thread KC Baltz
e? AW On 14 Sep 2005, at 20:00, KC Baltz wrote: > I've searched the archives, seen this question asked a bunch, but > never seen an answer I liked. > > We're just starting to look at Maven and I'd like to be able to > produce a ZIP file that contains both th

RE: How do I package dependent jars in my distribution?

2005-09-14 Thread KC Baltz
-core in the m2 svn, which is at: https://svn.apache.org/repos/asf/maven/components/trunk HTH, john KC Baltz wrote: | I've searched the archives, seen this question asked a bunch, but never seen an answer I liked. | | We're just starting to look at Maven and I'd like to be able t

How do I package dependent jars in my distribution?

2005-09-14 Thread KC Baltz
I've searched the archives, seen this question asked a bunch, but never seen an answer I liked. We're just starting to look at Maven and I'd like to be able to produce a ZIP file that contains both the jar created from the source of our project as well as all the jars it depends on. Is there