Re: [ANN] Apache Maven Verifier 1.7.1 Released

2020-04-06 Thread Christopher
Never mind. I see it now. It says "This library provides a test harness for Maven integration tests." For some reason, this paragraph didn't render in my email client upon first viewing. My mistake. Sorry for the noise. On Mon, Apr 6, 2020 at 5:41 PM Christopher wrote: >

Re: [ANN] Apache Maven Verifier 1.7.1 Released

2020-04-06 Thread Christopher
What does maven-verifier-plugin do? Including this information on future announcement messages would be helpful, thanks. On Mon, Apr 6, 2020 at 5:34 PM Robert Scholte wrote: > > The Apache Maven team is pleased to announce the release of the Apache Maven > Verifier, version 1.7.1 > > This librar

Re: Possible to use maven API to get another projects binaries ?

2017-03-08 Thread Christopher M. Logan

Re: Single-page sites?

2017-02-28 Thread Christopher
A single page would also be a great idea for Maven plugin mojo documentation, especially if the generated page could easily conform to the style of an existing (non-Maven generated) site. On Mon, Feb 27, 2017, 13:50 wrote: > Hello. > > I realize this may be a long shot: Is there any way to get t

Re: Maven Compiler Plugin 3.5.1 bug

2016-10-23 Thread Christopher
gt; appropriate subdirectory(ies) as a generated sources root. Nothing to do > on the IDE side. > > > -Original Message- > From: Christopher [mailto:ctubb...@apache.org] > Sent: Sunday, October 23, 2016 11:42 AM > To: Maven Users List > Subject: Re: Maven Compiler P

Re: Maven Compiler Plugin 3.5.1 bug

2016-10-23 Thread Christopher
The build-helper-maven-plugin method has the advantage of having a corresponding build-helper plugin in Eclipse, to automatically add the generated sources to the project build path in Eclipse (with m2e). If the compiler plugin started using one of the directories in /target/ as a source directory

Re: Getting project classes from plugin

2016-09-08 Thread Christopher
a Java 8 Stream filter. I'll soon be pushing this to https://github.com/revelc/warbucks-maven-plugin, if anybody is interested in reusing my strategy. On Mon, Sep 5, 2016 at 2:04 PM Christopher wrote: > Unfortunately, using project.getBuild().getOutputDirectory() doesn't work > ei

Re: Getting project classes from plugin

2016-09-05 Thread Christopher
om/javabuild/builder-parent/blob/master/builder-maven-plugin/src/main/java/net/java/javabuild/ExecuteMojo.java > > > > On 5 September 2016 at 13:56, Barrie Treloar wrote: > > > >> On 5 September 2016 at 12:11, Christopher wrote: > >> > >>> Hi, &g

Getting project classes from plugin

2016-09-04 Thread Christopher
Hi, I'm trying to write a Maven plugin which gets, and processes, a list of classes from the project. I want to be able to get the project classes compiled from either src/main/java (compile scope), and src/test/java (test scope, minus compile scope), depending on user configuration. So far, the

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
build-helper-maven-plugin/usage.html#Add_more_resource_directories_to_your_project > > > Le 19/08/2016 à 23:37, Curtis Rueden a écrit : > > Generate it during generateSources using a groovy script via gmaven? Or > in > > Java within the test code itself? > > > > On Aug 19, 201

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
Aug 19, 2016 at 5:09 PM Curtis Rueden wrote: > Hi Christopher, > > The point of this JAR is for use in a unit test, right? > > So if it's in src/test/resources, it will only end up lumped into the test > JAR, not the main JAR. Do you guys deploy your test JAR for downstream &

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
true > > which can be added to the module you do not wish to deploy. We use this in > order to not deploy .ear files to our artifactory. > > Regards, Gord Cody > > On Fri, Aug 19, 2016 at 1:37 PM, Karl Heinz Marbaise > wrote: > > >

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
x27;re trying to take positive action to correct it. In any case, my goal for this thread was to find solutions which allow me to avoid having the binary in SCM, not to convince myself I don't need to. :) On Fri, Aug 19, 2016 at 4:44 AM Mirko Friedenhagen wrote: > Hello Christopher, >

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
src/test/resources are included in the source-release artifact, yes. On Fri, Aug 19, 2016 at 1:56 AM jieryn wrote: > Would src/test/resources be included in the src artifact? I suspect not. > > On Thu, Aug 18, 2016 at 9:47 PM, Christopher wrote: > > If this were a person

Re: Create test jar during build without attaching

2016-08-19 Thread Christopher
On Fri, Aug 19, 2016 at 1:38 PM Karl Heinz Marbaise wrote: > Hi, > > On 19/08/16 03:36, Christopher wrote: > > Hi Maven Users list, > > > > What's the best way to create a jar during a build without attaching it? > > > > Currently, our pom is configure

Re: Create test jar during build without attaching

2016-08-18 Thread Christopher
this seems like a perfect > exception. > > On Thu, Aug 18, 2016 at 9:36 PM, Christopher wrote: > > Hi Maven Users list, > > > > What's the best way to create a jar during a build without attaching it? > > > > Currently, our pom is configured to use the maven-jar-p

Create test jar during build without attaching

2016-08-18 Thread Christopher
Hi Maven Users list, What's the best way to create a jar during a build without attaching it? Currently, our pom is configured to use the maven-jar-plugin to create it, but that plugin attaches an artifact, which gets deployed. We don't want that. That doesn't seem to be configurable. We could c

Re: "mvn clean verify deploy" causes jar plugin to execute twice

2016-08-06 Thread Christopher
On Fri, Aug 5, 2016, 13:27 wrote: > On 2016-08-05T18:48:25 +0200 > Anders Hammar wrote: > > > > Executing > > mvn verify deploy > > will execute the build lifecycle twice. No need to do that. Just execute > > mvn deploy > > as the deploy phase comes after the verify phase. > > > On 2016-08-05T18

Re: API for annotation scanning in a mojo?

2016-07-15 Thread Christopher
You could also use something like reflections[1] or scannotation[2]: [1]: https://github.com/ronmamo/reflections [2]: http://scannotation.sourceforge.net/ On Fri, Jul 15, 2016 at 10:47 AM Matt Benson wrote: > Paul, > If you decide that scanning of classfiles is what you want to do, Apache > C

Re: Publishing to Central

2016-04-27 Thread Christopher
It looks like the videos are "members only" and you need a community access code to view them. Is that intended? The blog post is a nice pointer to the videos, but it's kinda useless without the videos themselves. On Wed, Apr 27, 2016 at 2:49 PM Manfred Moser wrote: > Hi all, > > I recently reco

Re: Anyone using annotationProcessorPaths in maven-compiler-plugin

2016-03-24 Thread Christopher
The only annotation processor I use is Google's auto-service. I didn't find this to be setting to be useful at all in that case, because I still need the auto-service on the classpath (as an optional dependency) so I can actually use the @AutoService annotation in my source. I didn't try it with an

Re: Difficulty pulling artifact out of Central Repo

2016-02-28 Thread Christopher
Try switching to https instead. I've had luck with that when a proxy is interfering with a download from maven central. On Sat, Feb 27, 2016, 11:35 Nick Hill wrote: > Thank you for confirming, Bernd. > > I should have tried this before posting, but I tried this from my home > network and the jar

Re: Question regarding maven build on RHEL 7 failing for Apache Phoenix 4.6-HBase-1.1

2016-02-18 Thread Christopher
You should try `mvn clean install -DskipTests` Putting package in there is redundant (in most cases), as install is later in the maven build lifecycle and will include the package phase, and it's probably triggering a second lifecycle execution (only up to the package phase) after it goes through

Re: Do not run some Checkstyle rules in a specific Maven profile

2015-06-07 Thread Christopher
anted to do the same (some basic additions to the sun_checks.xml without rewriting it). It would be nice if there was a way to have a given style, and with an option, provide additions/removals. This option could be activated in a profile, and would satisfy your use case as well as mine. -- Christo

Re: dependency management with ant quick question

2015-05-13 Thread Christopher
py-dependencies-mojo.html) to make them available for ant. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Wed, May 13, 2015 at 11:00 PM, Zk W wrote: > Hi All > > We are new to Maven and we are an ant shop. > We like to use Maven's dependency management feature, not ivy

Re: use of exec in multiple phases

2015-05-13 Thread Christopher
You'll probably have to give each execution a unique id. On Wed, May 13, 2015, 18:32 Manfred Moser wrote: > You should be able to just add another execution into the project pom. The > plugin mgt will be inherited and merged and voila. > > manfred > > Johannes Ernst wrote on 13.05.2015 14:17: >

Re: Surprise DEPENDENCIES file from a maven plugin

2015-05-12 Thread Christopher
For what it's worth, I found a workaround: add my own DEPENDENCIES file to SCM. The remote-resources plugin doesn't appear to clobber existing files. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Tue, May 12, 2015 at 11:04 AM, Christopher wrote: > On Tue, May 12, 20

Re: Surprise DEPENDENCIES file from a maven plugin

2015-05-12 Thread Christopher
On Tue, May 12, 2015 at 1:38 AM, Karl Heinz Marbaise wrote: > Hi Christopher, > > the DEPENDENCIES file is generated by the maven-remote-resources-plugin > > http://svn.apache.org/viewvc/maven/pom/tags/apache-17/pom.xml?view=markup > > Lines 308-323 ... > Thanks. It seems

Surprise DEPENDENCIES file from a maven plugin

2015-05-11 Thread Christopher
dy seen this? Perhaps in another ASF project which depends on the ASF parent POM? -- Christopher L Tubbs II http://gravatar.com/ctubbsii - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: deployment in runtime for "provided" scope jars

2015-04-06 Thread Christopher
ion, maybe use the maven-assembly-plugin to create a tarball which includes a README, all the jars in a lib/ directory, and a launch script in bin/ which sets up the CLASSPATH and executes java. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Mon, Apr 6, 2015 at 9:21 PM, Lin Ma wrote: >

Re: Aggregating Javadocs in an assembly

2015-03-26 Thread Christopher
another plugin) to unpack the zip artifact into the appropriate target/site during the "site" phase to avoid executing asciidoctor a second time. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Thu, Mar 26, 2015 at 12:01 PM, dan bress wrote: > Christopher, >Thank

Re: Aggregating Javadocs in an assembly

2015-03-20 Thread Christopher
On Fri, Mar 20, 2015 at 2:51 PM, dan bress wrote: > Christopher, >Thanks for the info. >was your "docs" submodule, where the assembly lived? How would you > bundle the javadocs created by the parent? > At the time we were doing this, the docs module was wher

Re: Aggregating Javadocs in an assembly

2015-03-20 Thread Christopher
partly because I don't see a lot of value in a deployable artifact which bundles all the javadocs from many modules. Currently, my project only bundles individual javadoc jars to deploy to maven, and no longer builds an artifact with the aggregated javadocs. We still occasionally run javadoc:aggregate

Re: Exporting Individual Files with the SCM Plugin

2012-09-27 Thread Christopher Gardner
I am curious why scm export supports the includes and excludes tags. On Sep 27, 2012 6:32 PM, "Olivier Lamy" wrote: > 2012/9/28 Olivier Lamy : > > 2012/9/28 Christopher Gardner : > >> I'd like to export a few jar files from an svn location. These jar &g

Re: Exporting Individual Files with the SCM Plugin

2012-09-27 Thread Christopher Gardner
Philosophically I agree with your suggestion, but I am curious why I'm having trouble with the includes tag. Shouldn't it just work? On Sep 27, 2012 6:25 PM, "Graham Leggett" wrote: > On 27 Sep 2012, at 23:14, Christopher Gardner > wrote: > > > I'd li

RE: Is Maven only for Java?

2012-07-09 Thread Meeusen, Christopher W.
That list seems pretty old. We've been using Nuget for dotnet stuff. Works pretty well but it doesn't seem as feature rich as maven. Pretty cookie cutter IMO. Chris -Original Message- From: users-return-128148-Meeusen.Christopher=mayo@maven.apache.org [mailto:users-return-128148-Me

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Christopher Hunt
it is great that you're actively developing JS capabilities with Maven. It would be superb to collaborate on the MJS project and make it achieve your goals. Please feel free to get in touch directly so that we can see what areas of commonality there are. Kind regards, Christopher -

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Christopher Hunt
s * jquery * jquery-mobile * jquery-ui * knockout.js * qunit Kind regards, Christopher (1) http://mojo.codehaus.org/js-import-maven-plugin/ (2) http://mojo.codehaus.org/javascript-maven-tools/index.html - To unsubscribe, e-mail: user

[ANN] Webminifier Maven Plugin 1.0.0 Released

2012-01-09 Thread Christopher Hunt
maven-plugin 1.0.0 The plugin is being heavily used by at least two large corporations. Enjoy, The Mojo team. Christopher Hunt (1) http://mojo.codehaus.org/javascript-maven-tools/

[ANN] JS Import Maven Plugin 1.0.0 Released

2012-01-09 Thread Christopher Hunt
past year and is being heavily used by at least two large corporations. Enjoy, The Mojo team. Christopher Hunt (1) https://github.com/amdjs/amdjs-api/wiki/AMD (2) http://mojo.codehaus.org/javascript-maven-tools/

[ANN] jslint-maven-plugin-1.0.0 Released

2011-09-22 Thread Christopher Hunt
njoy, The Mojo team. Christopher Hunt - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Not a valid plugin file: maven-taglib-plugin-1.4.2.jar

2011-09-20 Thread Hahn, Christopher (SAN DIEGO)
e system in question and tried copying one into this location, but this produced the same error. Does anyone recall this issue when working with Maven 1.0? Thank you very muchjust for reading this novella. ;0) Christopher [cid:image001.png@01CAF080.AD65F1E0

How can I use a Maven plugin to change Eclipse WebSphere Deployment Classloader mode to PARENT_LAST

2011-08-23 Thread Harris, Christopher P
Hi. I've been hacking away for 3 weeks on getting Maven to play nicely with RAD 8,0/JDK 1.5/WebSphere 6.1 + JSF 1.2 & Facelets. So far, I've been able find the Maven plugins RAD, Eclipse, WTP, WAS6 and mess with Eclipse/RAD Project Facets, etc to suit my needs. The one crucial bit of informat

RE: Kudos

2011-08-17 Thread Meeusen, Christopher W.
I wouldn't say maven is difficult to setup. I'm certainly a maven newb but was able to get our projects building with maven and our in house nexus repository within 2 weeks. And I had 0 ant/ivy experience as well. I only wish our company had our own build engineers to setup and manage the enviro

ws-zones-proxy issue

2011-07-25 Thread Meeusen, Christopher W.
Sorry, I know this is a question for apache or nexus lists (or both), but I need some resolution so trying here as well. I have a proxy repository to the apache ws-zones-proxy repository. It stopped indexing correctly and now when I do a build I cannot download a woden.jar artifact that

Re: can release-plugin check preconditions?

2011-07-05 Thread Christopher Cudennec
Hi Stephen, the issue is: http://jira.codehaus.org/browse/MRELEASE-690 Cheers, Christopher Am 04.07.2011 23:55, schrieb Stephen Connolly: Please create an issue for it. ping me back with the issue id and I'll add it to the Backlog On 4 July 2011 22:48, Christopher Cudennec wrote: T

Re: can release-plugin check preconditions?

2011-07-04 Thread Christopher Cudennec
y. Do you know anything about that? Is it worth creating a new issue? Cheers, Christopher Am 04.07.2011 23:22, schrieb Stephen Connolly: correct. See MRELEASE-166 and other open issues in the release plugin On 4 July 2011 22:07, Christopher Cudennec wrote: Hi everyone! I'd like to

can release-plugin check preconditions?

2011-07-04 Thread Christopher Cudennec
been deployed to the repository. In that case you have to clean up the mess yourself by performing a rollback or removing the SCM tag. Can someone confirm that behaviour? Is there any provided way to check preconditions for performing the release *before* actually executing it? Thanks, Christ

Re: Trouble with attached Tests

2011-05-30 Thread Christopher Meyer
Thanks for your quick responses! I tried Karl Heinz solution and it worked for me. Actually i extend an abstract class containing all my tests which are packed as a jar. The jar is added as dependency to my pom.xml. This works perfect! Thanks again for your help guys! Regards from Bochum, German

Trouble with attached Tests

2011-05-27 Thread Christopher Meyer
uot; the tests of the external jar are not executed. Do you have any hints for me? Did i get anything wrong? Regards, Chris -- Dipl.-Ing. Christopher Meyer Chair for Network and Data Security Horst Görtz Institute for IT-Security Ruhr-University Bochum, Germany Phone: (+49) (0)234 / 32

RE: What could cause such a fundamental file to be missing?

2011-03-23 Thread Hahn, Christopher (SAN DIEGO)
with the Maven Central in its configuration? > If not, that could be the problem. > > Manuel > > On Wed, Mar 23, 2011 at 18:09, Hahn, Christopher (SAN DIEGO) > wrote: > > Is this the problem (from the console): > >

Hello World?

2011-03-23 Thread Hahn, Christopher (SAN DIEGO)
s, and something must be misconfigured there, but other full-blown targets are working fine. Do I need to re-add Central as a repo on my command line? Sorry, but I seem to be going backwards on this matter... Chris ____ [cid:image001.png@01CBE94E.4DE427B0] Christophe

RE: What could cause such a fundamental file to be missing?

2011-03-23 Thread Hahn, Christopher (SAN DIEGO)
, Christopher (SAN DIEGO) Sent: Wednesday, March 23, 2011 10:05 AM To: Maven Users List Subject: What could cause such a fundamental file to be missing? Hello, In testing just the "clean" goal I get this error: === Download

What could cause such a fundamental file to be missing?

2011-03-23 Thread Hahn, Christopher (SAN DIEGO)
llback repo" setting here? Any kicks to the head appreciated, Chris [cid:image001.png@01CBE941.CC0CAD40] Christopher Hahn The Dude Software Production Engineering R&D Services, Hewlett-Packard Phone: 858-655-4096 Cell: 619-630-9791 ch...@hp.com<mailt

Some users, but not others...

2011-03-22 Thread Hahn, Christopher (SAN DIEGO)
his user's has failed to do as well. Any pointers appreciated, Christopher [cid:image001.png@01CBE884.5D4214D0] Christopher Hahn The Dude Software Production Engineering R&D Services, Hewlett-Packard Phone: 858-655-4096 Cell: 619-630-9791 ch...@hp.com&l

RE: Maven Hanging During Deploy

2011-03-08 Thread Hahn, Christopher (SAN DIEGO)
Hey, I am late to the game, but let me ask: how big are the objects being deployed? We have had issues with deliverable that are big enough. Take care, Chris -Original Message- From: Jonathan Warrington [mailto:jon...@gmail.com] Sent: Tuesday, March 08, 2011 12:49 PM To: Maven Users L

freshest, most stable, version

2011-03-04 Thread Hahn, Christopher (SAN DIEGO)
[cid:image001.png@01CBDA73.C87312F0] Christopher Hahn The Dude Software Production Engineering R&D Services, Hewlett-Packard Phone: 858-655-4096 Cell: 619-630-9791 ch...@hp.com<mailto:christopher.h...@hp.com> Visit our SPE Portal<http://teams5.sharepoint.hp.com/teams/SPE/default.aspx>

Over-riding, preceeding, or anhancing the clean target

2011-02-17 Thread Hahn, Christopher (SAN DIEGO)
am just hoping for a bread crumb to follow. Google didn't really get too close. Thank you for the kind attention, in any case, Christopher [cid:image001.png@01CBCEAD.D5B00DA0] Christopher Hahn The Dude Software Production Engineering R&D Services

Re: Get a list of POMs

2010-12-07 Thread Christopher Hunt
If you're in a Maven plugin then resolving the project path is easy... are you in a plugin or are you trying to do this from the command line etc. As Wendy stated, please cite your requirement in goal terms and then I'm sure the list will be of greater utility to you. Kind regards, C

RE: release fails with special chars

2010-12-01 Thread Christopher Taylor
Hi, á etc are (X)HTML entities. XML only defines the <, > and & entities. Since the POM is an XML file, so you'll need to replace the HTML entities with their numeric equivalents. You can find a table to help you at http://artific.com/library/xhtml_1.0_entities.html Regards, --Chris > -

deploying a loose jar to a repository using svn wagon

2010-11-26 Thread Christopher Taylor
anyone doing this (or maybe it just works for everyone else), so I'd appreciate any help/pointers you could offer. Thanks, --Christopher Taylor

401 error when deploying

2010-11-19 Thread Hahn, Christopher (SAN DIEGO)
appreciated, Chris [cid:image001.png@01CB87DE.84DA4E60] Christopher Hahn The Dude Software Production Engineering R&D Services, Hewlett-Packard Phone: 858-655-4096 Cell: 619-630-9791 ch...@hp.com<mailto:christopher.h...@hp.com> Visit our SPE Portal<

Re: New version of Eclipse from Springsource

2010-11-17 Thread Christopher Hunt
On 18/11/2010, at 9:51 AM, Brett Porter wrote: > This seems off-topic for the Maven list? Perhaps not. I like the fact that STS comes bundled with Maven 2.2.1 and m2e. If you're a Maven developer then this is a good IDE bundle. Kind regards, Chr

Re: Developing MOJOs using JSR-330

2010-11-14 Thread Christopher Hunt
p of Plexus purely for the purposes of developing plugins that are future-proof and work with Maven 2. Do you have an online resource that documents the current thinking in how the plugin annotations would look (further to what you posted the other day)? Thanks. Kind regards, Christopher ---

Re: Developing MOJOs using JSR-330

2010-11-12 Thread Christopher Hunt
iting Mojos. There's enough out there to learn without another container, and I think that having to learn Plexus impacts on who writes Mojos. May be in a year or so when M3 is widely adopted, this will be less of a concern. Kind regards, Christopher On 10/11/2010, at 7:45 PM, Jason van Zyl wr

Re: Continuous Delivery and Maven

2010-11-12 Thread Christopher Hunt
Please correct me if I do not have this right, but in effect the requirement is to take a snapshot release, the developer do their testing and then, if satisfied, release it in effect by renaming the artifact to drop the "-SNAPSHOT"? My apologies if this is an over simplification, but if it is

Re: Developing MOJOs using JSR-330

2010-11-09 Thread Christopher Hunt
en use the MOJO with Maven 2. Not possible? I really find Plexus tricky to work with given the lack of documentation and would prefer to use JSR-330 (as Maven 3 itself does!). Kind regards, Christopher On 10/11/2010, at 10:38 AM, Olivier Lamy wrote: > Hi, > Using @Inject will work only

Developing MOJOs using JSR-330

2010-11-09 Thread Christopher Hunt
Hi there, Is it possible to develop MOJOs with JSR-330 dependency injection, and thereby not depend on Plexus? If so then will Maven 2 be able to host JSR-330 MOJOs? There's not a lot of doco on this... all that I could find was how to write a MOJO using Plexus: http://maven.apache.org/guides/

Re: New filter properties - trigger filtering

2010-11-04 Thread Christopher Hunt
OK, I think I understand more about what's going on now. I understand that the 4.x maven resources plugin being used by m2e supports the plexus-build-api. As such I think it is receiving a BuildContext implementation provided by m2e that is Eclipse JDT-aware. When the resources plugin is invoked

Re: New filter properties - trigger filtering

2010-11-04 Thread Christopher Hunt
then m2eclipse looks to be selective w.r.t. the resources that are copied... Do you know if m2eclipse a) does something special with the resources plugin; and/or (b) perhaps explicitly sets overwrite to false on the plugin? Kind regards, Christ

Re: New filter properties - trigger filtering

2010-11-04 Thread Christopher Hunt
Hi Oliver, Thanks for your reply. After trawling through the code following on from your pointers, I ended up wondering if I could just inform the build context that these particular html resources had changed (org.sonatype.plexus.build.incremental.BuildContext). I was hoping that this would b

New filter properties - trigger filtering

2010-11-04 Thread Christopher Hunt
ilter properties during the generate-resources phase. Is there a supported method of informing the resources plugin that resources should be re-filtered? Thanks for any guidance. Kind regards, Christopher - To unsubscribe, e

Re: Maven SCM plugin and CCRC

2010-10-20 Thread Meeusen, Christopher W.
I tried to get this to work but have up after getting no where for a few days. Chris On Oct 20, 2010, at 12:59, "Lucas, Jeffrey A." wrote: I'm having an issue getting the Maven SCM Plugin configured to use CCRC (ClearCase Remote Client v7.1.1). 1. What should the clearcase-setti

Re: Questions about axistools-maven-plugin

2010-08-10 Thread Meeusen, Christopher W.
No, not personally. But I know of a team that uses that plugin to generate adb stubs, they say it work well. Chris On Aug 10, 2010, at 18:22, "Greg Akins" wrote: Thanks Wayne.. Looks like another option might be to use axis2-wsdl2code-maven-plugin Does anyone have any experience with tha

maven-changelog-plugin

2010-08-05 Thread Meeusen, Christopher W.
Hi, Just wondering if anyone has found a nice write up on integrating the maven-changelog-plugin with clear case? Thanks, Chris

wagon-webdav

2010-07-30 Thread Meeusen, Christopher W.
Hi, I'm trying to use maven-site-plugin and the wagon-webdav artifact. I get this error when I do mvn site-deploy. But according to http://maven.apache.org/wagon/wagon-providers/wagon-webdav/ it says it does support directory copying... anyone know what could produce this error? Thanks,

RE: mvn site:deploy error

2010-07-26 Thread Meeusen, Christopher W.
.bats that are working... Chris -Original Message- From: Meeusen, Christopher W. Sent: Monday, July 26, 2010 9:17 AM To: Maven Users List Subject: RE: mvn site:deploy error Well I'm on a windows 7 box, so AFAIK ssh isn't built into windows. You have to use a took like Plink

RE: mvn site:deploy error

2010-07-26 Thread Meeusen, Christopher W.
Well I'm on a windows 7 box, so AFAIK ssh isn't built into windows. You have to use a took like Plink or PSCP to get the maven-site-plugin to deploy to a webserver. I downloaded PLINK and and PSCP and pointed to their executables like so: -Original Message- From: users-return-112896-

RE: mvn site:deploy error

2010-07-26 Thread Meeusen, Christopher W.
command are you running on the command line? On 2010-07-23 19:53, Meeusen, Christopher W. wrote: > Hi, > > > > I'm trying to transfer a directory of files to our web server, and I > thought that using mvn site:deploy would do what I want, but I'm > getting an

mvn site:deploy error

2010-07-23 Thread Meeusen, Christopher W.
Hi, I'm trying to transfer a directory of files to our web server, and I thought that using mvn site:deploy would do what I want, but I'm getting an error when I run the site:deploy command. I'm running from Windows 7 scp'ing to linux 10.04 server edition. The linux system has openSSH already

SCP javadoc to web server?

2010-07-22 Thread Meeusen, Christopher W.
Hi, I'm using the maven-javadoc-plugin to generate javadoc it works fine, but I'd like to know how to SCP the javadoc to our webserver. I have a server setup with apache2 and openSSH. Can I configure the javadoc plugin to SCP the files to my web server or do I need another plugin to deploy th

RE: maven-javadoc-plugin

2010-06-21 Thread Meeusen, Christopher W.
question, can you have multiple instances of a plugin in the same pom.xml? Thanks, Chris -Original Message- From: users-return-112178-meeusen.christopher=mayo@maven.apache.org [mailto:users-return-112178-meeusen.christopher=mayo@maven.apache.or g] On Behalf Of Meeusen, Christopher W

maven-javadoc-plugin

2010-06-21 Thread Meeusen, Christopher W.
I'm trying to modify my pom.xml so that it creates two different versions of javadoc for my 1 project. I want an internal version (has everything in it ) and an external version for the same project (only public modifier visible). I've spent some time reading through the instructions here: http:/

RE: placing third party installation under maven

2010-06-08 Thread Meeusen, Christopher W.
Look into nexus, its free, and easy. I'm also a Maven newb and took less than 4 hours to setup and upload all our 3rd party artifacts. Good luck, Chris -Original Message- From: anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] On Behalf Of Anders Hammar Sent: Tuesday, June 08,

RE: Internal Repository Advice

2010-06-01 Thread Meeusen, Christopher W.
I agree, Nexus is super easy to get up and run. Took me only a few hours to install and upload all our artifacts to it. -Original Message- From: users-return-111737-meeusen.christopher=mayo@maven.apache.org [mailto:users-return-111737-meeusen.christopher=mayo@maven.apache.or g]

RE: MAVEN DOES NOT WORK PROPERLY IN WINDOWS 7

2010-06-01 Thread Meeusen, Christopher W.
I'm running maven (and m2eclipse) on Windows 7, with no issues. I would double check your dependencies in your pom.xml file. Try installing these artifacts to your local repository and try this again. Chris -Original Message- From: users-return-111719-meeusen.christopher=mayo@maven.

m2eclipse mailing list?

2010-05-28 Thread Meeusen, Christopher W.
Is there a separate list for m2eclipse questions? Got m2eclipse properly building my aar services, but I get an annoying error on startup. An internal error occurred during: "Repository registry initialization". The repositoryId cannot be null when creating new repository! Here is my settings.xm

Re: newbie question

2010-05-26 Thread Meeusen, Christopher W.
s/mini/guide-3rd-party-jars-local.html -specify a local location for the JAR, by using "system scope" (not the greatest solution) On Wed, May 26, 2010 at 2:00 PM, Meeusen, Christopher W.< meeusen.christop...@mayo.edu> wrote: I guess I miss understood the concept of dependencies. I

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
I guess I miss understood the concept of dependencies. I thought that it was used only for .jars that were in a repository say commons-lang-2.4, but if you have some api from a vendor, say vendor.jar, that you didn't have to configure a decency for that. -Original Message- From:

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
1.5 1.5 Regards 2010/5/26 Meeusen, Christopher W. > Hi, > > > > I'm brand new to maven, read through a few books, and built a simple > maven project to produce a .jar. I've installed the m2ecplipse pugin > and have got it to work properl

newbie question

2010-05-26 Thread Meeusen, Christopher W.
Hi, I'm brand new to maven, read through a few books, and built a simple maven project to produce a .jar. I've installed the m2ecplipse pugin and have got it to work properly on a few simple projects. Now I'm having an issue when I try to build a more complex project, which requires at least

Re: Embedded error: Unable to download the artifact from any repository

2010-01-13 Thread Christopher Styles
the artifact actually there? > 2) Do you have Archiva configured to require authentication and, if so, are > the credentials properly configured in Hudson's settings.xml file? > > Due to MNG-3477, authentication failures aren't reported as such. > > Justin > >

Embedded error: Unable to download the artifact from any repository

2010-01-13 Thread Christopher Styles
Hi, I'm running a maven release build from Hudson and when trying to download an artifact from a remote repository it fails with the error below... Does anyone has any pointers on how to resolve this issue...??? I'd really appreciate your help... FYI, I also added a snippet from my pom.xml, which

Re: MAVEN2 PROJECT DEPLOYMENT FAILING....

2009-11-24 Thread Christopher Styles
009 at 10:23 AM, Christopher Styles wrote: > Hi, > > I'm trying to build and deploy a maven2 project via hudson, and the build > works fine, but the deployment is failing... It's trying to deploy to a > location that's not specified in in my parent > pom.xml... Does an

MAVEN2 PROJECT DEPLOYMENT FAILING....

2009-11-24 Thread Christopher Styles
Hi, I'm trying to build and deploy a maven2 project via hudson, and the build works fine, but the deployment is failing... It's trying to deploy to a location that's not specified in in my parent pom.xml... Does anyone know why this is happening...??? If someone could please provide insight as to

Re: Maven 1.0.2 Errors

2009-07-09 Thread Dunstall, Christopher
I'll wait and see if someone out there happens to see my email and knows an answer. Thanks for taking the time to answer me anyway. :) Chris On 10/07/09 1:47 PM, "Wayne Fay" wrote: > So does that mean M1 is no longer supported? There are just a lot fewer people on this list using M1 than in

Re: Maven 1.0.2 Errors

2009-07-09 Thread Dunstall, Christopher
So does that mean M1 is no longer supported? C On 10/07/09 10:06 AM, "Wayne Fay" wrote: > No one has seen this at all? Very few people are running M1 at this point, IME. Wayne - To unsubscribe, e-mail: users-unsubscr...@mav

Re: Maven 1.0.2 Errors

2009-07-09 Thread Dunstall, Christopher
No one has seen this at all? Chris On 9/07/09 2:53 PM, "Dunstall, Christopher" wrote: Hi, Lately, I've been getting some really bizarre behaviour from running junit tests in Maven 1.0.2. The tests were written in Eclipse, where they run fine. However, when I run a maven

Maven 1.0.2 Errors

2009-07-08 Thread Dunstall, Christopher
Hi, Lately, I've been getting some really bizarre behaviour from running junit tests in Maven 1.0.2. The tests were written in Eclipse, where they run fine. However, when I run a maven target, it runs the junit test but shows an error. As a result, it finishes up as the build has failed.

maven-antrun-plugin: Java classes don't compile after an Ant task

2009-07-01 Thread Christopher L Conway
My project generates source code using the XTC parser generator (http://cs.nyu.edu/rgrimm/xtc/). XTC doesn't have a Maven plugin that I'm aware of, so I'm trying to build the parser using an Ant Java task, like so: maven-antrun-plugin generate-sources

  1   2   3   >