Re: Running ant targets from maven.

2010-11-03 Thread Manfred Moser
> Hi > > I need to use Maven as a wrapper to build.xml. I know that there is > plugin for running ant tasks from Maven, what about running ant targets ? same plugin does the job. - To unsubscribe, e-mail: users-unsubscr...@ma

Running ant targets from maven.

2010-11-03 Thread asdas adasads
Hi I need to use Maven as a wrapper to build.xml. I know that there is plugin for running ant tasks from Maven, what about running ant targets ? --drako

Re: Request to re-open MNG-3472

2010-11-03 Thread Ron Wheeler
On 03/11/2010 1:17 PM, Haszlakiewicz, Eric wrote: -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] On 02/11/2010 3:29 PM, Haszlakiewicz, Eric wrote: -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] The guys with small disk

[ANN] Maven WAR Plugin 2.1.1 Released

2010-11-03 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven WAR Plugin, version 2.1.1 The WAR Plugin is responsible for collecting all artifact dependencies, classes and resources of the web application and packaging them into a web application archive. http://maven.apache.org/plugins/maven-wa

Re: Maven Site Customization

2010-11-03 Thread ginni
Hi, Yes, I do have the in each pom parent declaration. And, I have read the FAQs. Here's what I am getting when I run site:stage at the topmost parent pom project: http://maven.40175.n5.nabble.com/file/n3249031/dirs.gif In 'site' I see index.html. When I open it, I see the index.apt I cr

Archetype:create-from-project

2010-11-03 Thread amelie0204
Hi, I'm trying to use the archetype-plugin following the instruction on http://maven.apache.org/archetype/maven-archetype-plugin/advanced-usage.html. After step 2 - mvn install I get in my local repository three artifacts: .maven-archetype, pom and maven-metadata-local.xml but no jar. After cha

Re: Maven Site Customization

2010-11-03 Thread Dennis Lundberg
On 2010-11-03 17:02, ginni wrote: > > Also, I added site.xml to each of the pom projects that are 'modules' of the > parent. The structure is like this: > > http://maven.40175.n5.nabble.com/file/n3248665/project-structure.gif > > where aero is the parent pom. common is also a parent pom with a

Re: Maven Site Customization

2010-11-03 Thread Dennis Lundberg
On 2010-11-03 14:22, ginni wrote: > > So it is not possible to include external links in the Site? Yes of course it is, but the external site won't have the skin that you use for your project and they will not get the navigation of your project. > Yes, my graphic is in src/site/resources/images

RE: Request to re-open MNG-3472

2010-11-03 Thread Haszlakiewicz, Eric
>-Original Message- >From: Ron Wheeler [mailto:rwhee...@artifact-software.com] > >On 02/11/2010 3:29 PM, Haszlakiewicz, Eric wrote: >>> -Original Message- >>> From: Ron Wheeler [mailto:rwhee...@artifact-software.com] >>> The guys with small disk can just delete their entire local re

Re: Maven Site Customization

2010-11-03 Thread ginni
Also, I added site.xml to each of the pom projects that are 'modules' of the parent. The structure is like this: http://maven.40175.n5.nabble.com/file/n3248665/project-structure.gif where aero is the parent pom. common is also a parent pom with aero as its parent. Its modules are all those und

Re: Maven Site Customization

2010-11-03 Thread ginni
So it is not possible to include external links in the Site? Yes, my graphic is in src/site/resources/images within the project. Why would I see the Overview page only the first time I load the Site and not be able to navigate back to it? Thanks for replying! Ginni -- View this message in con

[Dependent jar path as property value] Error

2010-11-03 Thread Hari shankar
Am trying to use something like org.sonatype.tycho maven-osgi-test-plugin 0.9.0 -Xmx512M -javaagent:*${jacoco.agent.path}* =destfile=C:/coverage.exec But for some reasons, the property is NOT getti

Re: No surefire-reports directory and BuildFailureException

2010-11-03 Thread Anders Hammar
Well, posting the output could help. There ought to be something useful in there... /Anders On Wed, Nov 3, 2010 at 11:44, Moritz Winter wrote: > Hi, > thanks for the answer. This is a example-project especially aimed at > setting up the test-envoirnment (JsfUnit + Arquillian) e.g. a > proof-of-c

Maven surefire report plugin hangs forever

2010-11-03 Thread Kannan Ekanath
My project install was perfectly fine until yesterday but today my install gets stuck at the following, Apache Maven 2.2.1 (r801777; 2009-08-06 20:16:01+0100) Java version: 1.6.0_20 [INFO] Surefire report directory: C:\Perforce\project-name\target\surefire-reports Basically after this line the

Re: No surefire-reports directory and BuildFailureException

2010-11-03 Thread Moritz Winter
Hi, thanks for the answer. This is a example-project especially aimed at setting up the test-envoirnment (JsfUnit + Arquillian) e.g. a proof-of-concept. Iam quite sure skipping some tests won't work because the chances are slim that the tests do actually run (no glassfish-embedded-starting up)

Re: newbie - having difficulties with jar files

2010-11-03 Thread Wendy Smoak
On Wed, Nov 3, 2010 at 12:52 AM, blue skyz wrote: > I have some sample pom.xml file, that I am using to learn Maven.  I am > posting what I see in Maven console and snippets from pom.xml. What did you type at the command line to get this output? > I understand that I need to authenticate to the

Re: No surefire-reports directory and BuildFailureException

2010-11-03 Thread Anders Hammar
Weird. But executing mvn clean test -X will give you debug output and should give you some kind of hint what's wrong. At least, it will tell you which plugin is running into trouble (I believe it's the surefire-plugin based on your mail). You could also try skipping tests to narrow things down. Th

Re: newbie - having difficulties with jar files

2010-11-03 Thread Anders Hammar
You need to get Maven online so that it can download this dependency from Maven central. It's not a "jar" that comes from Springsource. Why do you run in offline mode? /Anders On Wed, Nov 3, 2010 at 05:52, blue skyz wrote: > > os: Mac OS X > Eclipse: SSTS > > I have some sample pom.xml file, th

Re: Inline Ant tasks not working - Namespace problem?

2010-11-03 Thread Anders Hammar
The dependency should be for the antrun-plugin. The definition of jacocoant as a plugin is just wrong I think, it's not a plugin. Also, I don't think you should put any xmlns in the maven project tag. Maven is not using this, it's the antrun-plugin (which is a separated space). Maybe you want to t

Re: Dependency resolution and version ranges

2010-11-03 Thread Stephen Connolly
You need to understand how maven sorts version numbers On 3 Nov 2010 03:38, "Elliot" wrote: Hi, How does Maven use version ranges when resolving a specific version of a dependency? I've read this page http://docs.codehaus.org/x/IGU - a design document for Maven 2.0 (I'm using 2.2.1) - but it

Asset Packaging Plugin

2010-11-03 Thread joestelmach
I recently open sourced a plugin I've been working on, and thought some folks here might like to know about it. The plugin aims at optimizing your static assets at build time by automating JSLint, Closure Compiler, YUI Compressor, cache-busting, custom concatenation, and gzipping tasks. Document

newbie - having difficulties with jar files

2010-11-03 Thread blue skyz
os: Mac OS X Eclipse: SSTS I have some sample pom.xml file, that I am using to learn Maven. I am posting what I see in Maven console and snippets from pom.xml. com.springsource.training.release SpringSource Training Repository -

No surefire-reports directory and BuildFailureException

2010-11-03 Thread Moritz Winter
Hi, First of all I would like to mention that this is my first post on this list, I hope that this question is posted in the right place. I have tried finding a solution for my problem, but it either doesn't exist, or my limited brain can't manage to figure out how to do it (I strongly hope