Remove ${basedir} from pom.build.sourceDirectory

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-06-29 17:59:33 +00:00
parent 68da2606e7
commit 6ebdcb7b31
3 changed files with 34 additions and 4 deletions

View File

@ -56,10 +56,10 @@
<ant:mkdir dir="target"/>
<ant:echo>Source directory is ${basedir}/${pom.build.sourceDirectory}</ant:echo>
<ant:echo>Source directory is ${pom.build.sourceDirectory}</ant:echo>
<ant:javadoc
sourcepath="${basedir}/${pom.build.sourceDirectory}"
sourcepath="${pom.build.sourceDirectory}"
packagenames="${maven.jellydoc.packages}"
classpathref="doclet.classpath"
docletpathref="doclet.classpath"
@ -75,7 +75,7 @@
description="Creates an XML representation of the doclet information">
<ant:javadoc
sourcepath="${basedir}/${pom.build.sourceDirectory}"
sourcepath="${pom.build.sourceDirectory}"
packagenames="${pom.package}.*"
classpathref="doclet.classpath"
docletpathref="doclet.classpath"

View File

@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-jellydoc-plugin</id>
<name>Maven JellyDoc Plug-in</name>
<currentVersion>1.0</currentVersion>
<currentVersion>1.1-SNAPSHOT</currentVersion>
<!-- Gump integration -->
<gumpRepositoryId>jakarta</gumpRepositoryId>
@ -27,6 +27,15 @@
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>dIon Gillard</name>
<id>dion</id>
<email>dion@apache.org</email>
<organization>Apache Software Foundation</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>

View File

@ -0,0 +1,21 @@
<?xml version="1.0"?>
<document>
<properties>
<title>Changes</title>
<author email="dion@multitask.com.au">dIon Gillard</author>
<author email="kschrader@karmalab.org">Kurt Schrader</author>
</properties>
<body>
<release version="1.1" date="In CVS">
<action dev="dion" type="fix">
Change use of pom.build.sourceDirectory to not include the basedir. This must be placed in the pom
if a ${basedir} prefix is required.
</action>
</release>
<release version="1.0" date="Unknown">
</release>
</body>
</document>