Re: Can't get image to display using confluence markup

2009-08-21 Thread Lukas Theussl
found it: http://jira.codehaus.org/browse/DOXIA-182 so image support was added in doxia 1.1. You should try site-plugin-2.1-SNAPSHOT which uses doxia 1.1. HTH, -Lukas PS Here are all the confluence issues in the changelog:

Maven for java-tomcat-webproject

2009-08-21 Thread Venkat.krsna
Hi, I am new to maven tool. My objective is i am having a tomcat web project and build the java source files using apache-ant-1.7 (C:\apache-ant-1.7.1). I have to use the maven2 tool for build purpose. But I dont know how to configure the project in my tomcat folder in maven pom.xml file.

Re: Maven for java-tomcat-webproject

2009-08-21 Thread Jochen Wiedmann
Use the Tomcat sysdeo plugin and configure it to use to configure Tomcat that your webapp is not in its own webapps folder, but in YourProject/target/YourWebApp. On Fri, Aug 21, 2009 at 9:11 AM, Venkat.krsnavenkatraman...@shloklabs.com wrote: Hi,       I am new to maven tool. My objective is

Re: Maven for java-tomcat-webproject

2009-08-21 Thread Venkat.krsna
Hi thanks for your response. I am not creating any maven project. I just having my java-tomcat web project in tomcat webapps folder. I just map this java sources in maven2 tool for build my web project through maven2. Where i am going to map my tomcat web application java sources into maven 2?

Re: Maven for java-tomcat-webproject

2009-08-21 Thread Anders Hammar
OK, I guess we need to back one step. Do you have the basic understanding of Maven? If not, I kindly ask you to read in the Maven definitve guide ( http://www.sonatype.com/books/maven-book/reference/) first so you understand the basics. If you're going to use Maven, you are going to create at

Re: Maven for java-tomcat-webproject

2009-08-21 Thread Venkat.krsna
Hi thanks for your suggestion. I got your point regarding the deployment. Anyway, now i read the basics of maven from the link which you sent me and do the process which i need. thanks Anders Hammar wrote: OK, I guess we need to back one step. Do you have the basic understanding of

Re: Maven for java-tomcat-webproject

2009-08-21 Thread Jochen Wiedmann
And I am suggesting to have it the other way round. Lots simpler to use the tools like they are designed rather than circumvent their defaults and settings., Jochen On Fri, Aug 21, 2009 at 9:25 AM, Venkat.krsnavenkatraman...@shloklabs.com wrote: Hi thanks for your response. I am not creating

Re: Mysterious error on site:site

2009-08-21 Thread B Smith-Mannschott
On Sun, Aug 16, 2009 at 16:20, B Smith-Mannschottbsmith.o...@gmail.com wrote: On Sat, Aug 15, 2009 at 00:18, Sam Barnett-Cormacks.barnett-corm...@lancaster.ac.uk wrote: Further note: this happened when I added the following (host address edited):

Copy Dependent jars to main jar

2009-08-21 Thread raghuprasad
Hello experts, My project has some 25 dependent jar files. I am using maven-copy-dependency plug in to copy the jar to some location from my local repository. Also used to maven-jar-plug in to add the corresponding class path entry. Now for some reason i need 4 jars files to be present inside

Re: Copy Dependent jars to main jar

2009-08-21 Thread Alexander
Hi, You could unpack these 4 jars with dependency plugin ( dependency:unpack* goals) to target directory before making project jar. 2009/8/21 raghuprasad raghuprasad@gmail.com Hello experts, My project has some 25 dependent jar files. I am using maven-copy-dependency plug in to copy

Seeing ghosts... maven property expansions issue

2009-08-21 Thread Stevo Slavić
Hello maven users, A project with two modules M1 M2 and their aggregating parent module A, where A has itself a parent module P builds successfully if run without site phase/goal (e.g. mvn clean verify), but mysteriously fails otherwise (e.g. mvn clean verify site). M2 has dependency to M1, and

[mojo Maven-plugin] how to load generated classes in the process-classes phase

2009-08-21 Thread NGUYEN Cong Kinh
Hello everybody, I want to create a Maven plugin using AbstractMojo for the process-classes phase. In my plugin, I want to call classes generated by the compile phase. But, I don't know how to execute them. Could anyone give me some suggestions? Thanks in advance for any help! Kinh

Re: Seeing ghosts... maven property expansions issue

2009-08-21 Thread Stevo Slavić
For the second topic, I've found that maven-release-plugin was messing my pom. scm section of a parent module references custom properties, and when release plugin tags a release as well as when it prepares/commits for next development iteration it saves scm section in expanded form which is not

RE: [mojo Maven-plugin] how to load generated classes in the process-classes phase

2009-08-21 Thread Martin Gainty
did you try implementing the guidelines for writing your first mojo at http://maven.apache.org/guides/plugin/guide-java-plugin-development.html you mentioned calling classes you could build an archetype of your class e.g. myObject myFieldtest/myField /myObject then include referenced myObject

Re: Problems with property interpolation

2009-08-21 Thread Brian Fox
I don't see anything obvious. You don't see foo.bar in /target/classes/foo.bar with the value interpolated? On Fri, Aug 21, 2009 at 12:29 AM, Damon Silverdamon.sil...@diio.net wrote: I've been trying unsuccessfully to get property interpolation to work in non-pom.xml files using maven 2.0.9 on

Re: Copy Dependent jars to main jar

2009-08-21 Thread Brian Fox
http://www.sonatype.com/people/2009/08/how-to-make-an-executable-jar-in-maven/ On Fri, Aug 21, 2009 at 4:43 AM, raghuprasadraghuprasad@gmail.com wrote: Hello experts, My project has some 25 dependent jar files. I am using maven-copy-dependency plug in to copy the jar to some location

RE: Problems with property interpolation

2009-08-21 Thread Damon Silver
Correct. The output looks the same as the input: texttext ${foo.bar} moretext Note that this is a WAR-generating module, FWIW. - Damon -Original Message- From: Brian Fox [mailto:bri...@infinity.nu] Sent: Friday, August 21, 2009 7:01 AM To: Maven Users List Subject: Re: Problems with

RE: Problems with property interpolation

2009-08-21 Thread Damon Silver
More information: The version of the file in the corresponding directory in target does not have values interpolated (which is the critical missing piece). The version of the file that gets copied to any classes directory in target does have values interpolated. - Damon -Original

Re: [MAVEN-2.1.0] Using site:deploy for Wagon-scp-exe is not successful.

2009-08-21 Thread Brett Porter
Like it says, Permission denied. Check you have permissions where it might be unzipping the files. - Brett On 20/08/2009, at 4:00 AM, subir.sasiku...@wipro.com subir.sasiku...@wipro.com wrote: Thank You Brett!! Running an ssh-agent has solved the problem. Now I could see that upload

Re: Help solve Internal error in the plugin manager?

2009-08-21 Thread Robert Morse
Same issue with 2.2.0. Any solution? On Jul 24, 2009, at 9:09 AM, David Delbecq wrote: Hello, I received a strange error message from maven: [INFO] Internal error in the plugin manager executing goal 'org.apache.maven.doxia:doxia-maven-plugin:1.1.1:render-books': Unable to load the mojo

Re: Problems with property interpolation

2009-08-21 Thread Brian Fox
That seems contradictory. The resources plugin puts things into target/classes. How is the file finding it's way to /target? On Fri, Aug 21, 2009 at 1:49 PM, Damon Silverdamon.sil...@diio.net wrote: More information: The version of the file in the corresponding directory in target does not

maven build from central repossitory

2009-08-21 Thread huser
Hi, Is there a way to run maven build in such a way that it forcefully downloads the artifacts from central/in-house repository instead of using the local .m2 repo ? I realise cleaning .m2 will force the artifacts download from Nexus (our repo manager). But since we run builds through Hudson I

Re: maven build from central repossitory

2009-08-21 Thread Roland Asmann
Hi, Not 100% sure, but doesn't Hudson have an option to use separate local repositories and clean them before builds? On Friday 21 August 2009 21:00, huser wrote: Hi, Is there a way to run maven build in such a way that it forcefully downloads the artifacts from central/in-house repository

generate matisse code

2009-08-21 Thread Jim Sellers
Hi all. Does anyone use maven to call matisse to generate the java code from the .form objects? I'm just looking into keeping the generated code completely separate from the code our developers use. Thanks for your time, Jim

basic inheritance question

2009-08-21 Thread Marshall Schor
The documentation on POM inheritance http://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project_Inheritance says the things that are inherited are: * dependencies * developers and contributors * plugin lists (including reports) * plugin executions with

[ANN] Apache Source-Release Assembly Descriptor 1.0 Released

2009-08-21 Thread John Casey
It appears that the site/repository synchronization is moving slowly, so please be patient and these artifacts and site updates should be showing up before long. I want to make sure I get this announcement out before I forget it, though. --- The Maven team is pleased to announce the release