Re: Don't want to repeat plugin version for both build and reporting

2014-10-02 Thread Kathryn Huxtable
I’ve always used properties, but would it work to use buildDependencies? -K On Oct 2, 2014, at 7:02 PM, Paul Benedict pbened...@apache.org wrote: I use the maven-javadoc-plugin in both build and reporting. I don't want to fall back to properties to share the plugin version. Is there a better

Re: How to tell Maven to generate code when XSL has changed?

2013-04-25 Thread Kathryn Huxtable
I'm not the requestor, but it seems like time stamp would be reasonable. But you also have a forceCreate config (or something like that, it's been a few weeks since I last typed it.) They could just use that and always generate the file. -K On Apr 25, 2013, at 5:20 AM, Baptiste MATHUS wrote:

Re: git scm and site:deploy

2012-08-22 Thread Kathryn Huxtable
Should I be pulling that and deploying? -K On Aug 22, 2012, at 7:12 AM, Stephen Connolly wrote: Here is my fork https://github.com/stephenc/wagon-gitsite which has support for deploying multi-module projects (which is what I needed) On 22 August 2012 13:09, Stephen Connolly

Can I do scm checkout from inside a plugin?

2012-06-26 Thread Kathryn Huxtable
I know the release plugin can do it, but the source is fairly complex. Is there an easy way? My goal is to check out an earlier version of the artifact, copy its resources (so I'll also be running the copy-resources plugin), which produces some data as side effects, and then compare that data

Re: Can I do scm checkout from inside a plugin?

2012-06-26 Thread Kathryn Huxtable
Kathryn Huxtable kath...@kathrynhuxtable.org: I know the release plugin can do it, but the source is fairly complex. Is there an easy way? My goal is to check out an earlier version of the artifact, copy its resources (so I'll also be running the copy-resources plugin), which produces

Re: Can I do scm checkout from inside a plugin?

2012-06-26 Thread Kathryn Huxtable
Thanks. I am using maven3, but I think the invoker looks simpler. If we were using Jenkins already I might think differently… -K On Jun 26, 2012, at 11:27 AM, Olivier Lamy wrote: 2012/6/26 Kathryn Huxtable kath...@kathrynhuxtable.org: Thanks! I'm also checking out the mojo-executor plugin

Re: Can I do scm checkout from inside a plugin?

2012-06-26 Thread Kathryn Huxtable
On Jun 26, 2012, at 1:56 PM, Kathryn Huxtable wrote: Thanks. I am using maven3, but I think the invoker looks simpler. If we were using Jenkins already I might think differently… -K On Jun 26, 2012, at 11:27 AM, Olivier Lamy wrote: 2012/6/26 Kathryn Huxtable kath...@kathrynhuxtable.org

Re: [ANN] JAXB-2 Maven Plugin 1.4 Released

2012-06-26 Thread Kathryn Huxtable
In general, how does this compare to the jvnet jaxb plugin? Why would I use one over the other? I do a certain amount of JAXB, and I'm curious. -K On Jun 26, 2012, at 3:20 PM, Anders Hammar wrote: Hi, The Mojo team is pleased to announce the release of the JAXB-2 Maven Plugin version

Re: Maven site documentation problem

2011-12-08 Thread Kathryn Huxtable
Let's hear it for version control. Also undelete. -K On Dec 7, 2011, at 9:58 AM, Jim McCaskey wrote: Hello all, As a sort of public service announcement I would like to point out a problem with the docs here:

Re: Using Maven with custom libraries which are not in repository.

2011-09-29 Thread Kathryn Huxtable
And a single Nexus instance can have multiple repositories. You can manually install your custom libraries in a repository in Nexus that is only used by this one project. -K On Sep 29, 2011, at 6:56 AM, Schrecker, Wolfgang wrote: You can put your libs into Nexus without 'mavenizing' them.

Re: tool (mojo) lifecycle

2011-09-04 Thread Kathryn Huxtable
I assume you mean artifact instead of repository? -K On Sep 4, 2011, at 12:05 AM, Wayne Fay wrote: I feel like it may be better to stick it out in a separate repository so that the lifecycle of the tool and project are decoupled. I agree. This is nearly always the right approach. Wayne

Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
Anyone else seen this? [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project seaglasslookandfeel: Compilation failure [ERROR] Failure executing javac, but could not parse the error: [ERROR] Fatal Error: Unable to find package

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
Okay, I see. Apple changed the location of classes.jar, which is what they call rt.jar in a recent release of Java, possibly update 26. -K On Jul 31, 2011, at 5:39 PM, Kathryn Huxtable wrote: Anyone else seen this? [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
On Jul 31, 2011, at 6:27 PM, Barrie Treloar wrote: On Mon, Aug 1, 2011 at 8:23 AM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: Okay, I see. Apple changed the location of classes.jar, which is what they call rt.jar in a recent release of Java, possibly update 26. How did you fix

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
Actually, can I require that a profile be activated when both a jdk version *and* an os family are selected, or is it always an or comparison? -K On Jul 31, 2011, at 6:41 PM, Kathryn Huxtable wrote: I've been working on a Swing pluggable look feel, and was needing to include rt.jar. I have

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
a Mac Java, they will use the standard locations for these things rather than Apple's non-standard locations, but it's just an assumption. I'm not counting on anything, including that Oracle will even release a Mac Java. ;-) -K On Jul 31, 2011, at 6:44 PM, Kathryn Huxtable wrote: Actually

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
My test indicated that it's an and/or. -K On Jul 31, 2011, at 6:55 PM, Barrie Treloar wrote: On Mon, Aug 1, 2011 at 9:14 AM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: Actually, can I require that a profile be activated when both a jdk version *and* an os family are selected

Re: Getting strange error in compilation

2011-07-31 Thread Kathryn Huxtable
/1.6.0_26-b03-384.jdk/Contents/Home/../Classes/classes.jar On Sun, Jul 31, 2011 at 7:55 PM, Barrie Treloar baerr...@gmail.com wrote: On Mon, Aug 1, 2011 at 9:14 AM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: Actually, can I require that a profile be activated when both a jdk version

Re: Pretty-printing/compressing HTML in post-site phase

2011-06-01 Thread Kathryn Huxtable
On Jun 1, 2011, at 9:54 AM, Andreas Sewe wrote: Kathryn Huxtable wrote: My purpose in writing htmlfilter-site-maven-plugin was to better incorporate docbkx-tools output into Doxia-generated output. Yes, that seems to be the rationale for the maven-tidy-plugin http://docbook

Re: Pretty-printing/compressing HTML in post-site phase

2011-05-31 Thread Kathryn Huxtable
My purpose in writing htmlfilter-site-maven-plugin was to better incorporate docbkx-tools output into Doxia-generated output. Not sure what might help. -K On May 31, 2011, at 8:06 AM, Andreas Sewe wrote: Hi all, are there any plugins that can be used to prettify or compress the output of

Re: Keeping the executable bit on shell scripts when testing

2011-01-26 Thread Kathryn Huxtable
That's a reasonable workaround. I think it's a reasonable thing to expect permissions on files to be preserved. Consider this a +1 for a feature enhancement. -K On Jan 26, 2011, at 11:04 AM, Stephen Connolly wrote: launch them with sh as the prefix on the cli, eg sh foo.sh and not

Fwd: Maven job in woodlawn maryland

2010-12-27 Thread Kathryn Huxtable
I'm posting this for Rick, who isn't on the list. Just FYI. -K Begin forwarded message: From: Rick Waters rwat...@apexgov.com Date: December 27, 2010 1:37:35 PM CST To: kath...@kathrynhuxtable.org Subject: Maven job in woodlawn maryland Required Qualifications for Apache Maven and Nexus

Re: Maven job in woodlawn maryland

2010-12-27 Thread Kathryn Huxtable
I would worry a bit about posting a job for Maven people, but the Boxee thing is quite funny and seems like a more questionable use of the list. ;-) -K On Dec 27, 2010, at 1:44 PM, Kathryn Huxtable wrote: I'm posting this for Rick, who isn't on the list. Just FYI. -K Begin forwarded

Re: What is this BoxEE support?

2010-12-27 Thread Kathryn Huxtable
I'd guess that someone has email from this group forwarded to Boxee support. Either because they hate Boxee, or more likely, as an error somewhere. This may not be the fault of anyone at Boxee. -K On Dec 27, 2010, at 4:37 PM, Steve Cohen wrote: Who are they and who gave them the right to

Re: What is this BoxEE support?

2010-12-27 Thread Kathryn Huxtable
Eric or Wendy are more likely correct than I. -K On Dec 27, 2010, at 5:31 PM, Kathryn Huxtable wrote: I'd guess that someone has email from this group forwarded to Boxee support. Either because they hate Boxee, or more likely, as an error somewhere. This may not be the fault of anyone

Re: Can I release:perform without release:prepare?

2010-12-21 Thread Kathryn Huxtable
work On 21 December 2010 08:46, Stephen Connolly stephen.alan.conno...@gmail.com wrote: I normally just keep on doing the release:prepare until it works given that it resumes from the point of failure On 21 December 2010 04:00, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: I've

Re: Can I release:perform without release:prepare?

2010-12-21 Thread Kathryn Huxtable
=xxx -DconnectionUrl=xxx -Dtag=xxx I think you can skip workingDirectory. Also, the line above is what I use for clearcase. You might need to add some param depending on your scm. /Anders On Tue, Dec 21, 2010 at 05:00, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: I've already

Re: Can I release:perform without release:prepare?

2010-12-21 Thread Kathryn Huxtable
Dumb me. That's for the perform. -K On Dec 21, 2010, at 7:19 AM, Kathryn Huxtable wrote: I'm releasing to Sonatype, staging to Central. -K On Dec 21, 2010, at 2:11 AM, Anders Hammar wrote: Should work if you do everything correctly. It would be similar to executing the release:perform

Re: Can I release:perform without release:prepare?

2010-12-21 Thread Kathryn Huxtable
the format of the developerConnection element? If so, how would I specify it correctly and get SSH? -K On Dec 21, 2010, at 7:18 AM, Kathryn Huxtable wrote: Well, it *was* working a few months ago when I did my last release. Now it fails. -K On Dec 21, 2010, at 2:50 AM, Stephen Connolly wrote

Re: Can I release:perform without release:prepare?

2010-12-21 Thread Kathryn Huxtable
/wagon-gitsite/url /scm Is the problem the format of the developerConnection element? If so, how would I specify it correctly and get SSH? -K On Dec 21, 2010, at 7:18 AM, Kathryn Huxtable wrote: Well, it *was* working a few months ago when I did my last release. Now it fails. -K On Dec

Can I release:perform without release:prepare?

2010-12-20 Thread Kathryn Huxtable
I've already manually done the release:prepare because for some reason my release:prepare didn't successfully push to github. I'm using Maven 2.2.1. -K - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional

Re: git as deploy target

2010-11-30 Thread Kathryn Huxtable
with Maven 2. I haven't tried with Maven 3 yet, because I have other fish to fry at the moment. -K On Nov 30, 2010, at 5:31 PM, Benson Margulies wrote: Back in March, there was a thread involving Kathryn Huxtable and deploying to git via the scm provider. I have a vague sense that she

Re: git as deploy target

2010-11-30 Thread Kathryn Huxtable
I should point out that this was intended to deploy site documentation, not artifacts. Did you want artifacts? That should be doable, but probably not with the existing code. I rather think that the ssh wagon would be sufficient. -K On Nov 30, 2010, at 5:48 PM, Kathryn Huxtable wrote: Yes

Re: git as deploy target

2010-11-30 Thread Kathryn Huxtable
, at 5:48 PM, Kathryn Huxtable wrote: Yes, it's available on central at org.kathrynhuxtable.maven.wagon.wagon-gitsite:0.2, and the docs are at http://khuxtable.github.com/wagon-gitsite/ There are a few minor improvements I'd like to make, the main one being to create the gh-pages branch

Re: [Repetitive]: Maven does not live up to its promises

2010-10-26 Thread Kathryn Huxtable
seperately from the source? This is important to me. I regard a release as a juxtaposition of properly correlated source and docs. That's what I'm aiming at. Thanks, Ken On Oct 25, 2010, at 9:54 AM, Kathryn Huxtable wrote: I have a plugin (org.kathrynhuxtable.maven.wagon.wagon-gitsite

Re: [Repetitive]: Maven does not live up to its promises

2010-10-25 Thread Kathryn Huxtable
I have a plugin (org.kathrynhuxtable.maven.wagon.wagon-gitsite) that uploads your site documentation to github. It hasn't been verified to work with Maven 3 yet. The docs are at http://khuxtable.github.com/wagon-gitsite/, if you're interested. -K On Oct 23, 2010, at 4:15 PM, Kenneth McDonald

Re: maven is a swamp

2010-10-15 Thread Kathryn Huxtable
First off, I think Maven is great. I'm in the middle of stuff, so I'm not moving to Maven 3 until I get to a good stopping place. (Probably about six months or so.) On Oct 15, 2010, at 9:20 AM, Graham Leggett wrote: Guy who wrote ant build script is spontaneously thrown out of the third floor

Re: maven is a swamp

2010-10-13 Thread Kathryn Huxtable
It does. The rest of the language is rather ugly, though. -K On Oct 13, 2010, at 9:07 AM, Rick Mangi wrote: I just enjoyed the bit about perl having elegant and concise data structures :-) On 10/13/10 9:57 AM, chemit che...@codelutin.com wrote: Le Wed, 13 Oct 2010 08:58:27 -0400, Ron

Re: maven-1.1 build-bootstrap fails with OpenVMS

2010-08-24 Thread Kathryn Huxtable
Egads, is anyone still using Maven 1? If so, why? -K On Aug 24, 2010, at 11:40 AM, Wayne Fay wrote: Wasting time? How do I force BASIC authentication using maven-1.1 either with maven-1.1 or maybe I can do it outside maven-1.1-code through a Let me be more plain... you are WASTING YOUR

Re: force maven to redownload/refresh released dependencies

2010-08-06 Thread Kathryn Huxtable
On Aug 6, 2010, at 12:57 PM, Kalle Korhonen wrote: On Fri, Aug 6, 2010 at 10:43 AM, Haszlakiewicz, Eric ehas...@transunion.com wrote: -Original Message- I don't (yet) know much about the internals of maven, but is it really that much of an impact on the code? There's already support

Re: force maven to redownload/refresh released dependencies

2010-08-06 Thread Kathryn Huxtable
On Aug 6, 2010, at 1:00 PM, Haszlakiewicz, Eric wrote: -Original Message- From: Kalle Korhonen [mailto:kalle.o.korho...@gmail.com] On Fri, Aug 6, 2010 at 10:43 AM, Haszlakiewicz, Eric ehas...@transunion.com wrote: -Original Message- I don't (yet) know much about the

Re: force maven to redownload/refresh released dependencies

2010-08-06 Thread Kathryn Huxtable
I second this! I've used Artifactory and liked it. (I somewhat prefer Nexus, at least the last time I looked at Artifactory.) -K On Aug 6, 2010, at 1:47 PM, Yoav Landman wrote: You may want to take a look at the CI integration in Artifactory -

Re: force maven to redownload/refresh released dependencies

2010-08-06 Thread Kathryn Huxtable
On Aug 6, 2010, at 2:58 PM, Paul Benedict wrote: On Fri, Aug 6, 2010 at 2:53 PM, Haszlakiewicz, Eric ehas...@transunion.comwrote: You're missing the point of what I'm asking. I'm not suggesting that maven make it possible or easy to *create* the violation. I'm suggesting that it should

Re: force maven to redownload/refresh released dependencies

2010-08-06 Thread Kathryn Huxtable
On Aug 6, 2010, at 6:16 PM, Ron Wheeler wrote: On 06/08/2010 5:56 PM, Haszlakiewicz, Eric wrote: -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] I'm AGREEING with you that the solution is to wipe out the local artifact! But you can only do that once you

Re: Maven 3 Shell CLI: how to use?

2010-07-02 Thread Kathryn Huxtable
And given that the reporting stuff is baked into the pom, I'd consider that stuff to be part of Maven, but apparently you folks disagree. I think you're very wrong. Not about the shell, but about site, etc. -K On Jul 2, 2010, at 2:56 PM, Jason van Zyl wrote: Open source project plans always

Re: Maven 3 Shell CLI: how to use?

2010-07-02 Thread Kathryn Huxtable
If it had been that way from the start, I suppose I'd agree. But it wasn't. If it had changed with Maven 2, I suppose I'd agree. Well, we'll see what happens. -K On Jul 2, 2010, at 3:21 PM, Jason van Zyl wrote: On Jul 2, 2010, at 4:15 PM, Kathryn Huxtable wrote: And given

Re: Site docs in Maven 3

2010-07-01 Thread Kathryn Huxtable
: doesn't work with beta-1 (you have to use beta-7 or current maven3 trunk) 2010/6/30 Kathryn Huxtable kath...@kathrynhuxtable.org: Is there a version of the report generation that works? -K - To unsubscribe, e-mail

Re: Site docs in Maven 3

2010-07-01 Thread Kathryn Huxtable
separately from a ci system anyway and for the time being you could use m2 if needed. For all the goodness m3 provides, I don't think the site plugin which has a separate release lifecycle should hold it up Sent from my iPad On Jul 1, 2010, at 3:20 AM, Kathryn Huxtable kath

Re: Site docs in Maven 3

2010-07-01 Thread Kathryn Huxtable
about the tag line (which I subsequently change to Send from my rhymes with myPod) On 1 July 2010 18:33, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: BTW, Sent from my iPad (or iPhone) is the first thing I change when I get a device like that. -K

Site docs in Maven 3

2010-06-30 Thread Kathryn Huxtable
Is there a version of the report generation that works? -K - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
Are there any *good* guides to building an Eclipse plugin using Maven, preferably in a way that allows it to be developed in Eclipse? I don't really have any dependencies other than standard Eclipse packages, but I want all the great lifecycle and site management tools that Maven supplies.

Re: Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
to build everything from plugins the products: http://github.com/sonatype/sonatype-tycho/tree/master/tycho-its/projects/ On Jun 25, 2010, at 4:53 PM, Kathryn Huxtable wrote: Are there any *good* guides to building an Eclipse plugin using Maven, preferably in a way that allows

Re: Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
tests specifically which shows how to build everything from plugins the products: http://github.com/sonatype/sonatype-tycho/tree/master/tycho-its/projects/ On Jun 25, 2010, at 4:53 PM, Kathryn Huxtable wrote: Are there any *good* guides to building an Eclipse plugin using Maven, preferably

Re: Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
with Maven 2.x. On Jun 25, 2010, at 5:10 PM, Kathryn Huxtable wrote: BTW, what I'm developing is a relatively throwaway plugin for Mac Cocoa Eclipse to set the represented filename for the active editor in the associated window. This enables software such as DTerm, which provides

Re: Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
Okay, I answered that myself. (Yes.) -K On Jun 25, 2010, at 4:54 PM, Kathryn Huxtable wrote: Will this work with the released tycho (0.8.0) or does it need the 0.9.0-SNAPSHOT versions? -K On Jun 25, 2010, at 4:41 PM, Jason van Zyl wrote: Change the names accordingly, but you should

Re: Developing Eclipse plugin with Maven

2010-06-25 Thread Kathryn Huxtable
://gist.github.com/453490 This won't work with Maven 2.x. On Jun 25, 2010, at 5:10 PM, Kathryn Huxtable wrote: BTW, what I'm developing is a relatively throwaway plugin for Mac Cocoa Eclipse to set the represented filename for the active editor in the associated window. This enables software

Re: About Maven3 M2Eclipse plug-in versioning problem

2010-05-17 Thread Kathryn Huxtable
So how do I use my documentation-producing plugin in its own documentation without a variable version number? See http://github.com/khuxtable/docbkx-wrapper-plugin/blob/master/pom.xml for an example. It's in the site profile near the bottom. -K On May 17, 2010, at 12:48 PM, Kalpak Gadre

Re: About Maven3 M2Eclipse plug-in versioning problem

2010-05-17 Thread Kathryn Huxtable
Connolly wrote: you have to use the previously release version On 17 May 2010 22:24, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: So how do I use my documentation-producing plugin in its own documentation without a variable version number? See http://github.com/khuxtable/docbkx-wrapper

Re: feature request: more verbose error messages

2010-05-10 Thread Kathryn Huxtable
If you want this to ever be seen by someone who might possible implement your suggestion, you must file it in Jira. Otherwise you are quite literally talking to a brick wall. Really, Wayne? Literally? Where is the wall? -K, who thinks Wayne meant figuratively.

Re: feature request: more verbose error messages

2010-05-10 Thread Kathryn Huxtable
Indeed. I think you made your point. I just couldn't help myself. And to Neil, I read xkcd regularly. Sometimes it leaves me bewildered, sometimes it just doesn't work for me, and sometimes it's hilarious or insightful. -K On May 10, 2010, at 9:59 AM, Wayne Fay wrote: quite literally

Re: Release plugin git repo with multiple projects

2010-04-26 Thread Kathryn Huxtable
Having recently switched from svn to git for most of my projects, I have an opinion. I think you should create a JIRA ticket and consider this a bug. What we're dealing with here is a bit of svn-centric thinking during design. It needs to be fixed. -K On Apr 26, 2010, at 8:08 AM,

Re: Release plugin git repo with multiple projects

2010-04-26 Thread Kathryn Huxtable
, this is simply not supported by git, i.e. there's no way to clone, branch or tag _part_ of a repository. I am by no means a git expert, so I could be mistaken about this. Justin On 4/26/10 9:21 AM, Kathryn Huxtable wrote: Having recently switched from svn to git for most of my projects, I have

Re: Release plugin git repo with multiple projects

2010-04-26 Thread Kathryn Huxtable
to git, what do you do for the above cases, especially the parent pom one ? Jean-Laurent On Mon, Apr 26, 2010 at 5:37 PM, Justin Edelson justinedel...@gmail.com mailto:justinedel...@gmail.com wrote: OK. Then we're on the same page... On 4/26/10 11:32 AM, Kathryn Huxtable

Re: [ANN] Apache Maven 3.0-beta-1 Released

2010-04-23 Thread Kathryn Huxtable
I know Jason says he won't give ETAs, but is there any ETA on the site reporting? I make a lot of use of it, and I doubt I'm alone. My personal preference is to find some way to integrate the docbkx plugin with the site framework. I've got some code that does this for Maven 2, and it works for

Re: [ANN] Apache Maven 3.0-beta-1 Released

2010-04-23 Thread Kathryn Huxtable
vendredi 23 avril 2010, Kathryn Huxtable a écrit : I know Jason says he won't give ETAs, but is there any ETA on the site reporting? I make a lot of use of it, and I doubt I'm alone. My personal preference is to find some way to integrate the docbkx plugin with the site framework. I've got

Re: [ANN] Apache Maven 3.0-beta-1 Released

2010-04-23 Thread Kathryn Huxtable
org.apache.maven.lifecycle.LifecycleExecutor [INFO] 2 errors [INFO] - [INFO] [INFO] BUILD FAILURE -K On Apr 23, 2010, at 3:42 PM, Kathryn Huxtable wrote: Great! I'll try it out and let you know

OT: Android developer book recommendations?

2010-04-16 Thread Kathryn Huxtable
I know some of you out there are developing for Android. Do you have any good book recommendations? And how mature is the Maven stuff for Android? -K - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional

Re: How to get some menus expanded by default

2010-04-12 Thread Kathryn Huxtable
I do this by manually specifying the menus for all my reports and not using the reports variable in site.xml. There may be other ways. If there are, I'd like to know. -K On Apr 12, 2010, at 9:38 AM, Benson Margulies wrote: When I go here, the project information menu is expanded by default.

Re: How to get some menus expanded by default

2010-04-12 Thread Kathryn Huxtable
projects. On Mon, Apr 12, 2010 at 11:49 AM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: I do this by manually specifying the menus for all my reports and not using the reports variable in site.xml. There may be other ways. If there are, I'd like to know. -K On Apr 12, 2010, at 9:38

Re: Site plugin 2.1 and PMD/CPD don't play nicely

2010-04-09 Thread Kathryn Huxtable
On Apr 9, 2010, at 2:54 AM, Andreas Sewe wrote: Kathryn Huxtable wrote: My CPD HTML report is empty when I use maven-site-plugin 2.1. The XML report is fine. The PMD report is fine. If I use maven-site-plugin 2.0.1 I get my CPD report. I don't know if this is a problem with PMD, Site

Re: Site plugin overwrites index.apt

2010-04-08 Thread Kathryn Huxtable
Try version 2.1. I generally specify the reports I want in the project-info-reports plugin and don't specify the about report. -K On Apr 8, 2010, at 10:28 AM, Timothy Mcginnis wrote: I have a site for my project that defines a index.apt file. When I run the mvn site:site (or any other site

Site plugin 2.1 and PMD/CPD don't play nicely

2010-04-08 Thread Kathryn Huxtable
My CPD HTML report is empty when I use maven-site-plugin 2.1. The XML report is fine. The PMD report is fine. If I use maven-site-plugin 2.0.1 I get my CPD report. I don't know if this is a problem with PMD, Site, or Doxia, but I've filed MPMD-119 to report it. Has anyone else experienced

Re: Maven and Hudson

2010-04-07 Thread Kathryn Huxtable
If you're using TeamCity, do you also use IDEA for your IDE? -K, who rather prefers Nexus to Artifactory, having used both. Artifactory is pretty good, though. On Apr 7, 2010, at 1:20 PM, David Hoffer wrote: The tool stack we use is SVN, Maven, TeamCity Artifactory. -Dave On Wed, Apr

Re: Maven and Hudson

2010-04-07 Thread Kathryn Huxtable
.) -Dave On Wed, Apr 7, 2010 at 12:23 PM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: If you're using TeamCity, do you also use IDEA for your IDE? -K, who rather prefers Nexus to Artifactory, having used both. Artifactory is pretty good, though. On Apr 7, 2010, at 1:20 PM, David

Re: mvn install - skipping modules that only contain test code

2010-04-06 Thread Kathryn Huxtable
But why would anyone care what gets pulled into the local repository? I'm with Wayne on this one. That's how Maven works. An artifact is like a point in spacetime. It has coordinates and is immutable. You might need it later and it'll be there. And if not, so what? -K On Apr 6, 2010, at 2:28

Re: mvn install - skipping modules that only contain test code

2010-04-06 Thread Kathryn Huxtable
: Kathryn Huxtable [mailto:kath...@kathrynhuxtable.org] Sent: den 6 april 2010 21:32 To: Maven Users List Subject: Re: mvn install - skipping modules that only contain test code But why would anyone care what gets pulled into the local repository? I'm with Wayne on this one. That's how Maven

Not getting cpd.html in site generation

2010-04-06 Thread Kathryn Huxtable
I have the following in my reporting element: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-pmd-plugin/artifactId version2.4/version configuration targetJdk1.6/targetJdk linkXreftrue/linkXref sourceEncodingutf-8/sourceEncoding

Re: Not getting cpd.html in site generation

2010-04-06 Thread Kathryn Huxtable
said, a cpd.xml file is generated with duplicates. If I run mvn pmd:cpd I get the correct HTML listing, but with the incorrect site.vm formatting. I have a custom template file for my site docs. Could that be the problem? -K On Apr 6, 2010, at 4:05 PM, Kathryn Huxtable wrote: I have

Re: Not getting cpd.html in site generation

2010-04-06 Thread Kathryn Huxtable
On Apr 6, 2010, at 4:11 PM, Kathryn Huxtable wrote: On Apr 6, 2010, at 4:05 PM, Kathryn Huxtable wrote: I have the following in my reporting element: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-pmd-plugin/artifactId version2.4/version configuration targetJdk1.6

Re: Making a gitsite wagon for GitHub pages

2010-04-05 Thread Kathryn Huxtable
change to maven-scm-provider-gitexe and a few changes to wagon-scm. I'll post issues when I get my password to jira reset. -K On Apr 3, 2010, at 8:26 PM, Kathryn Huxtable wrote: Justin, My initial versions were basically fixes with some minor changes to wagon-scm. Once I get some codehaus

Re: Can a site wagon deploy its own site docs?

2010-04-03 Thread Kathryn Huxtable
, Stephen Connolly wrote: In general, a project cannot consume any maven plugins that it produces (as the plugins which have not been built yet could have an unknown effect on the build plan) I wonder if the same applies to extensions and wagons -Stephen On 3 April 2010 04:54, Kathryn Huxtable

Re: Can a site wagon deploy its own site docs?

2010-04-03 Thread Kathryn Huxtable
Also, my own htmlfilter-site-maven-plugin uses itself. It puts the plugin management in a site profile. But a wagon isn't a plugin and has no mojos. -K On Apr 3, 2010, at 6:22 AM, Kathryn Huxtable wrote: Well, the site plugin uses the previous version of itself for its own site plugin

Making a gitsite wagon for GitHub pages

2010-04-03 Thread Kathryn Huxtable
, 2010, at 7:13 PM, Justin Edelson wrote: Kathryn- I'm very curious to see your code. Please do let me know when it's posted somewhere (presumably github). Justin On Apr 2, 2010, at 7:08 PM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: On Apr 2, 2010, at 2:22 PM, Kathryn Huxtable

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
in settings.xml is supposed to take care of everything. Should there be a branch element in the git scm url structure a la the module element in CVS scm urls? -K On Apr 1, 2010, at 4:24 PM, Kathryn Huxtable wrote: Yeah, that's more or less what I mean. -K On Apr 1, 2010, at 4:09 PM, Mark

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
commit -a -m Deploy site documentation git push rm -Rf ${checkoutDirectory} -K On Apr 2, 2010, at 11:28 AM, Kathryn Huxtable wrote: So looking at the git SCM code (git-commons and gitexe) and at the wagon-scm code, the problem I see is that there is no syntax in the git SCM url to specify

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
as parameter and use that inside the code. txs and LieGrue, strub --- Kathryn Huxtable kath...@kathrynhuxtable.org schrieb am Fr, 2.4.2010: Von: Kathryn Huxtable kath...@kathrynhuxtable.org Betreff: Re: Problem with wagon-scm and gitexe An: Maven Users List users@maven.apache.org Datum

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
, at 12:59 PM, Kathryn Huxtable wrote: I don't really think there's a conceptual misunderstanding on my part, since the format for the CVS URL in the SCM code allows for a module_name as part of the URL, and not in standard URL syntax. But I take your point. My basic question of the moment

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
On Apr 2, 2010, at 2:03 PM, Justin Edelson wrote: On Apr 2, 2010, at 1:59 PM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: I don't really think there's a conceptual misunderstanding on my part, since the format for the CVS URL in the SCM code allows for a module_name as part

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
On Apr 2, 2010, at 2:22 PM, Kathryn Huxtable wrote: On Apr 2, 2010, at 2:03 PM, Justin Edelson wrote: IMHO, you should be writing your own wagon implementation and avoid using wagon-scm. This use case is very specific to github. This way, you're free to define your own URL syntax. Well

Re: Using variables in POM's version field

2010-04-02 Thread Kathryn Huxtable
On Apr 2, 2010, at 5:39 PM, Scott Susslin wrote: We're working in Agile, and QA needs to know what version number their working against. Since they're QAing about every day, I'd like to have them know exactly which version they're hitting without forcing the developers to change the

Re: Using variables in POM's version field

2010-04-02 Thread Kathryn Huxtable
Correct, and it's a bad idea. -K On Apr 2, 2010, at 6:15 PM, Scott Susslin wrote: I figured something like this was why it wasn't working. So sounds like, given Maven 2, it can't work. True? - Original Message From: Justin Edelson justinedel...@gmail.com To: Maven Users

Re: Problem with wagon-scm and gitexe

2010-04-02 Thread Kathryn Huxtable
Edelson wrote: Kathryn- I'm very curious to see your code. Please do let me know when it's posted somewhere (presumably github). Justin On Apr 2, 2010, at 7:08 PM, Kathryn Huxtable kath...@kathrynhuxtable.org wrote: On Apr 2, 2010, at 2:22 PM, Kathryn Huxtable wrote: On Apr 2, 2010

Problem with wagon-scm and gitexe

2010-04-01 Thread Kathryn Huxtable
I know the docs say that wagon-scm has only been tested with CVS and Subversion, and I've run it with Subversion successfully. Is anyone working on getting it to work with Git, or does it already? I created a very simply project with a README and a pom.xml and nothing else. It's at

Re: Problem with wagon-scm and gitexe

2010-04-01 Thread Kathryn Huxtable
to be automated. -K On Apr 1, 2010, at 12:14 PM, Kathryn Huxtable wrote: I know the docs say that wagon-scm has only been tested with CVS and Subversion, and I've run it with Subversion successfully. Is anyone working on getting it to work with Git, or does it already? I created a very

Re: Problem with wagon-scm and gitexe

2010-04-01 Thread Kathryn Huxtable
Huxtable kath...@kathrynhuxtable.org schrieb am Do, 1.4.2010: Von: Kathryn Huxtable kath...@kathrynhuxtable.org Betreff: Re: Problem with wagon-scm and gitexe An: Maven Users List users@maven.apache.org Datum: Donnerstag, 1. April, 2010 19:21 Uhr Since it seems to be my practice to have second

Re: Problem with wagon-scm and gitexe

2010-04-01 Thread Kathryn Huxtable
/apidocs/org/apache/maven/scm/ScmBranch.html --- Kathryn Huxtable kath...@kathrynhuxtable.org schrieb am Do, 1.4.2010: Von: Kathryn Huxtable kath...@kathrynhuxtable.org Betreff: Re: Problem with wagon-scm and gitexe An: Maven Users List users@maven.apache.org Datum: Donnerstag, 1. April, 2010

Re: Does wagon-scm work with maven-scm-provider-gitexe?

2010-03-30 Thread Kathryn Huxtable
don't see any configuration to allow me to do that. -K On Mar 29, 2010, at 1:18 PM, Brett Porter wrote: On 29/03/2010, at 1:29 PM, Kathryn Huxtable wrote: urls[1] = file:/Users/huxtable/.m2/repository/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar It looks like

Re: Does wagon-scm work with maven-scm-provider-gitexe?

2010-03-30 Thread Kathryn Huxtable
On Mar 30, 2010, at 11:29 AM, Kathryn Huxtable wrote: [INFO] Executing: /bin/sh -c cd /var/folders/M+/M+95phY6GfOYTLYCJKW4Bk+++TI/-Tmp- git clone git+ssh//github.com/khuxtable/test-project.git/. /var/folders/M+/M+95phY6GfOYTLYCJKW4Bk+++TI/-Tmp-/wagon-scm472467110.checkout I especially

Re: Does wagon-scm work with maven-scm-provider-gitexe?

2010-03-29 Thread Kathryn Huxtable
? Why aren't the wagons compatible with version 1.3 of the scm code. I couldn't use anything later than 1.1 if I wanted the wagon-scm to work. Inquiring minds want to know... -K On Mar 28, 2010, at 9:29 PM, Kathryn Huxtable wrote: And if so, what versions? I'm working on a plugin, so I'm

Re: Does wagon-scm work with maven-scm-provider-gitexe?

2010-03-28 Thread Kathryn Huxtable
On Mar 28, 2010, at 9:29 PM, Kathryn Huxtable wrote: And if so, what versions? I'm working on a plugin, so I'm including a bunch of plexus and other stuff. Is that important? ... I should have mentioned that I'm running Maven 2.2.1. -K

  1   2   3   >