Update of /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/maven-plugin/test-project
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2341/projects/opl-xdoclet/maven-plugin/test-project
Added Files:
project.properties project.xml maven.xml
Log Message:
working toward a maven plugin using opldoclet, and also fixed a minor irritation with xml attributes containing dashes.
--- NEW FILE: maven.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:opldoclet="opldoclet" xmlns:ant="jelly:ant">
<goal name="xxx">
<attainGoal name="opldoclet:prepare"/>
<!--
<ant:echo>.............................</ant:echo>
<opldoclet:generate srcdir="${basedir}/src/java"
destdir="${maven.build.dir}/generated-source"
includes="**/*.java"
ignoreunrecognized="false"
namespace="maven-opldoclet-plugin-test"/>
-->
</goal>
</project>
--- NEW FILE: project.properties ---
maven.username=maven
maven.repo.remote=http://www.ibiblio.org/maven,http://www.commonjava.org/maven
maven.repo.central=www.commonjava.org
maven.repo.central.directory=/usr/local/maven-repository
maven.multiproject.basedir=..
maven.multiproject.includes=commonjava-*/project.xml
maven.multiproject.excludes=commonjava-site/project.xml
maven.multiproject.aggregateDir=projects/
maven.compile.source=1.4
maven.compile.target=1.4
#maven.junit.fork=true
maven.junit.usefile=${basedir}/junit.out
xdoclet.qtags.generate=true
xdoclet.qtags.namespace=opl
--- NEW FILE: project.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<project>
<pomVersion>3</pomVersion>
<id>maven-opldoclet-plugin-test</id>
<name>OPLDoclet Maven Plugin Test Project</name>
<groupId>commonjava</groupId>
<currentVersion>0.1</currentVersion>
<organization>
<name>CommonJava Open Component Project</name>
<url>http://www.commonjava.org</url>
</organization>
<inceptionYear>2002</inceptionYear>
<package>org.commonjava.opl.xdoclet</package>
<description>XML schema and OPL definition generator (XDoclet2) plugin for maven - test project.</description>
<dependencies>
<dependency>
<groupId>commonjava</groupId>
<artifactId>maven-opldoclet-plugin</artifactId>
<version>0.1</version>
<type>plugin</type>
</dependency>
<dependency>
<groupId>commonjava</groupId>
<artifactId>commonjava-opl</artifactId>
<version>2.1-6</version>
</dependency>
<dependency>
<groupId>commonjava</groupId>
<artifactId>commonjava-util</artifactId>
<version>2.0-5</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>${basedir}/src/java</sourceDirectory>
</build>
</project>
|