Re: Can DITA be used to create site documentation?

2011-09-22 Thread Lukas Theussl
Not yet: http://jira.codehaus.org/browse/DOXIA-288 -Lukas On 09/22/2011 05:06 AM, Eric Kolotyluk wrote: I was wondering if it is possible to use DITA to generate the documentation for a site. We use DITA for other stuff and it integrates nicely with Eclipse, I was hoping someone might have

Re: Maven Setup for Project

2011-09-22 Thread Guillaume Polet
From what you expose, I don't see any reason that would prevent you from using Maven. However, you will struggle a little bit to set up sourceDirectory, warDirectory and resourcesDirectory since they are all merged together. You can get around this by setting up correct

Re: Can DITA be used to create site documentation?

2011-09-22 Thread Dan Tran
what kind of site are you looking for? how fancy you want it to be? -D On Wed, Sep 21, 2011 at 9:58 PM, Eric Kolotyluk eric.koloty...@gmail.com wrote: I was hoping someone had already tried this and would have some examples or tips. I'm not sure I want to pioneer that right now. Cheers,

RE: Maven Setup for Project

2011-09-22 Thread Diego Lin
Hi Khavnekar, You may use the command like this to generate the outline of the J2EE application and move your code to relevant sub-project: mvn archetype:create -DarchetypeArtifactId=maven-archetype-j2ee-simple -DgroupId=com.mycom.demo.commonlib -DartifactId=entApp01 You will understand

Re: mvn dependency tree not working

2011-09-22 Thread Jörg Schaible
kapila wrote: Thanks but I have tried to see that with debug option X and U . Nothing I could infer. But don't understand why I can't get dependency tree print. It cannot display what does not exist: org.hibernate.ehcache:hibernate- core:jar:3.3.1.GA - Jörg

Re: Can DITA be used to create site documentation?

2011-09-22 Thread Eric Kolotyluk
Not so much fancy as being able to use the same tools to create site content as we use for our on-line help and other documentation. As I have yet to actually create a site, I wanted to know what my options were before I tried. Cheers, Eric On 2011-09-21 11:18 PM, Dan Tran wrote: what kind

Cannot locate the artifact jbossws-native-jaxrpc

2011-09-22 Thread arka.sharma
Hi, I am having a project where in the pom.xml there is no dependency as groupId=org.jboss.ws.native and artifactId=jbossws-native-jaxrpc.But it is showing build failure because of Could not find artifact org.jboss.ws.native:jbossws-native-jaxrpc:jar:3.0.4.GA in central

RE: Cannot locate the artifact jbossws-native-jaxrpc

2011-09-22 Thread Jim McCaskey
Hi there, You mvn install:install-file line is slightly incorrect. As you can see from the error, it is looking for version 3.0.4.GA. But when you install it, you are using -Dversion=3.0.4. Try switching that to: -Dversion=3.0.4.GA If that fails, you might consider adding a JBOSS

[ANN] license-maven-plugin-1.0 Released

2011-09-22 Thread Tony Chemit
Hi, The Mojo team is pleased to announce the release of the license-maven-plugin version 1.0. This plugin manages the license of a maven project and its dependencies (update file headers, download dependencies licenses, check thirdparty licenses, ...). Some links : Documentation:

eclipse plugin does not generate org.eclipse.jdt.core.prefs file

2011-09-22 Thread Gabriel Belingueres
Hi, I'm using Maven 3.0.3. My current project pom.xml file uses a parent pom where is defined the maven-compiler-plugin configuration: properties maven.compiler.source1.6/maven.compiler.source maven.compiler.target1.6/maven.compiler.target

APT: Issue with adding xml code snippets as Verbatim

2011-09-22 Thread Params
Hi, I am using the APT documentation tool to add a page for my project. I tried to add the following snippet of xml into my .apt source file inside a 'verbatim' block. configuration property

RE: APT: Issue with adding xml code snippets as Verbatim

2011-09-22 Thread Robert Scholte
Hi, I had to do a trick to resolve this for the maven-eclipse-plugin documentation [1]It's related to VELOCITY-743 The idea is to assign the complex value to a variable, next print that variable. -Robert [1]

RE: APT: Issue with adding xml code snippets as Verbatim

2011-09-22 Thread Params
Hi Robert, I tried storing the value of the function into a variable and print it (following the example diff file you had posted). Below is my .apt snippet. -- configuration property

RE: APT: Issue with adding xml code snippets as Verbatim

2011-09-22 Thread Robert Scholte
The inner or outer single quotes should be double quotes or escape the inner ones.Now it's $varline = '${wf:errorCode('followed by noise -Robert Date: Thu, 22 Sep 2011 14:53:55 -0700 From: parame...@gmail.com To: users@maven.apache.org Subject: RE: APT: Issue with adding xml code snippets

RE: APT: Issue with adding xml code snippets as Verbatim

2011-09-22 Thread Params
Thanks Robert, I tried couple of combinations and found this to work: value#set($varline = '${wf:errorCode(wordcount)}') ${varline}/value However, the display text I now get as html is: value ${wf:errorCode(wordcount)}/value Is there a way, I can get the wordcount inside single quotes?

Constantly seeing metadata files downloaded

2011-09-22 Thread Maven User
Hi all - I'm running maven 3.0.3 and nexus 1.9.2 and I'm seeing some weird behavior. With every build, I see this: [DEBUG] === [DEBUG] Could not find metadata org.springframework:spring-web/maven-metadata.xml in local

Re: eclipse plugin does not generate org.eclipse.jdt.core.prefs file

2011-09-22 Thread Barrie Treloar
On Fri, Sep 23, 2011 at 3:51 AM, Gabriel Belingueres belingue...@gmail.com wrote: Hi, I'm using Maven 3.0.3. My current project pom.xml file uses a parent pom where is defined the maven-compiler-plugin configuration:  properties        maven.compiler.source1.6/maven.compiler.source      

Maven Compiler Plugin - Incremental compile problem -- because of directory structure.

2011-09-22 Thread Gupta, Narendra
1. I have following directory for java source code --lion --com -- contains pom.xml and java source code with package com.test1 - contains pom.cml and java source code with pakage com.test2 when compiler plugin compiles it does directory scanning and compiles

Re: Maven Compiler Plugin - Incremental compile problem -- because of directory structure.

2011-09-22 Thread Manfred Moser
Do yourself a favour and adopt the maven standard directory layout... On 11-09-22 03:09 PM, Gupta, Narendra wrote: 1. I have following directory for java source code --lion --com -- contains pom.xml and java source code with package com.test1 - contains

[ANN] jslint-maven-plugin-1.0.0 Released

2011-09-22 Thread Christopher Hunt
Hi, The Mojo team is pleased to announce the release of the JSLint Maven Plugin version 1.0.0. This plugin brings the JSLint JavaScript code quality control tool capabilities to the Maven project lifecycle. The JSLint Maven Plugin's closest relative to the Java world is the Java compiler

Re: Constantly seeing metadata files downloaded

2011-09-22 Thread Wayne Fay
Downloaded: http://SERVER/nexus/content/groups/public/org/springframework/spring-web/maven-metadata.xml Is there a known issue with this particular artifact within repo1?  Any suggestions on how to fix this? I have no problems accessing this file on repo1 [1]. I expect this must be

Re: Cannot locate the artifact jbossws-native-jaxrpc

2011-09-22 Thread arka.sharma
Hi Jim, Thanks a lot man.It worked. Regards, Arka -- View this message in context: http://maven.40175.n5.nabble.com/Cannot-locate-the-artifact-jbossws-native-jaxrpc-tp4830149p4832334.html Sent from the Maven - Users mailing list archive at Nabble.com.