Author: dennisl
Date: Mon Jul 10 09:08:12 2006
New Revision: 420577
URL: http://svn.apache.org/viewvc?rev=420577&view=rev
Log:
Update version references from 2.1 to 2.2 for the site
Modified:
jakarta/commons/proper/attributes/trunk/site/etc/ant_demo/build.xml
jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/maven.xml
jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml
jakarta/commons/proper/attributes/trunk/site/xdocs/ant_demo.xml
jakarta/commons/proper/attributes/trunk/site/xdocs/documenting.xml
jakarta/commons/proper/attributes/trunk/site/xdocs/index.xml
jakarta/commons/proper/attributes/trunk/site/xdocs/maven_demo.xml
Modified: jakarta/commons/proper/attributes/trunk/site/etc/ant_demo/build.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/etc/ant_demo/build.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/etc/ant_demo/build.xml
(original)
+++ jakarta/commons/proper/attributes/trunk/site/etc/ant_demo/build.xml Mon Jul
10 09:08:12 2006
@@ -39,14 +39,14 @@
destdir="${basedir}"
deprecation="true"
debug="true"
- classpath="${ant.home}/lib/commons-attributes-api-2.1.jar;."
+ classpath="${ant.home}/lib/commons-attributes-api-2.2.jar;."
optimize="false">
</javac>
</target>
<target name="run" description="o Compile and run the demo"
depends="compile">
<java
- classpath="${ant.home}/lib/commons-attributes-api-2.1.jar;."
+ classpath="${ant.home}/lib/commons-attributes-api-2.2.jar;."
classname="AttributeDemo"/>
</target>
@@ -57,7 +57,7 @@
additionalparam="-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=${basedir}">
<taglet
name="org.apache.commons.attributes.javadoc.CATaglet"
- path="${ant.home}/lib/commons-attributes-compiler-2.1.jar"
+ path="${ant.home}/lib/commons-attributes-compiler-2.2.jar"
/>
<fileset dir="${basedir}/" includes="**/*.java" />
</javadoc>
Modified: jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/maven.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/maven.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/maven.xml
(original)
+++ jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/maven.xml Mon
Jul 10 09:08:12 2006
@@ -46,21 +46,21 @@
</goal>
<goal name="install-plugin">
- <get
src="http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.1.jar"
- dest="${maven.home}/plugins/commons-attributes-plugin-2.1.jar"/>
+ <get
src="http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.2.jar"
+ dest="${maven.home}/plugins/commons-attributes-plugin-2.2.jar"/>
</goal>
<goal name="run">
- <available property="antPluginPresent"
file="${maven.home}/plugins/commons-attributes-plugin-2.1.jar"/>
+ <available property="antPluginPresent"
file="${maven.home}/plugins/commons-attributes-plugin-2.2.jar"/>
<fail unless="antPluginPresent"><![CDATA[
Couldn't find the Commons-Attributes plugin at:
- ${maven.home}/plugins/commons-attributes-plugin-2.1.jar
+ ${maven.home}/plugins/commons-attributes-plugin-2.2.jar
Please install the plugin and try again. You can either manually
download the plugin from:
- http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.1.jar
+ http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.2.jar
and place it into your Maven plugins directory, or execute:
Modified:
jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml
(original)
+++ jakarta/commons/proper/attributes/trunk/site/etc/maven_demo/project.xml Mon
Jul 10 09:08:12 2006
@@ -47,13 +47,13 @@
<dependency>
<groupId>commons-attributes</groupId>
<artifactId>commons-attributes-api</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>
<dependency>
<groupId>commons-attributes</groupId>
<artifactId>commons-attributes-compiler</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>
</dependencies>
Modified: jakarta/commons/proper/attributes/trunk/site/xdocs/ant_demo.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/xdocs/ant_demo.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/xdocs/ant_demo.xml (original)
+++ jakarta/commons/proper/attributes/trunk/site/xdocs/ant_demo.xml Mon Jul 10
09:08:12 2006
@@ -43,13 +43,13 @@
<ul>
<li>
- <p>Client API: <a
href="http://cvs.apache.org/~leosutic/commons-attributes-api-2.1.jar">commons-attributes-api-2.1.jar</a></p>
+ <p>Client API: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-api-2.2.jar">commons-attributes-api-2.2.jar</a></p>
<p>
<i>It is important that you do not rename this file -
it is referred to by name in the example build.xml.</i>
</p>
</li>
<li>
- <p>Ant task: <a
href="http://cvs.apache.org/~leosutic/commons-attributes-compiler-2.1.jar">commons-attributes-compiler-2.1.jar</a></p>
+ <p>Ant task: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-compiler-2.2.jar">commons-attributes-compiler-2.2.jar</a></p>
<p>
<i>It is important that you do not rename this file -
it is referred to by name in the example build.xml.</i>
</p>
@@ -264,18 +264,18 @@
destdir="${basedir}"
deprecation="true"
debug="true"
- classpath="${ant.home}/lib/commons-attributes-api-2.1.jar;."
+ classpath="${ant.home}/lib/commons-attributes-api-2.2.jar;."
optimize="false">
</javac>
</target>]]></source>
<p>
- Since we use attributes, we have to include the
commons-attributes-api-2.1.jar file in the classpath.
+ Since we use attributes, we have to include the
commons-attributes-api-2.2.jar file in the classpath.
</p>
<source><![CDATA[ <target name="run" description="o Compile
and run the demo" depends="compile">
<java
- classpath="${ant.home}/lib/commons-attributes-api-2.1.jar;."
+ classpath="${ant.home}/lib/commons-attributes-api-2.2.jar;."
classname="AttributeDemo"/>
</target>]]></source>
@@ -291,7 +291,7 @@
additionalparam="-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=${basedir}">
<taglet
name="org.apache.commons.attributes.javadoc.CATaglet"
- path="${ant.home}/lib/commons-attributes-compiler-2.1.jar"
+ path="${ant.home}/lib/commons-attributes-compiler-2.2.jar"
/>
<fileset dir="${basedir}/" includes="**/*.java" />
</javadoc>
Modified: jakarta/commons/proper/attributes/trunk/site/xdocs/documenting.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/xdocs/documenting.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/xdocs/documenting.xml
(original)
+++ jakarta/commons/proper/attributes/trunk/site/xdocs/documenting.xml Mon Jul
10 09:08:12 2006
@@ -46,7 +46,7 @@
<source><![CDATA[javadoc
-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=.
- -tagletpath commons-attributes-compiler-2.1.jar
+ -tagletpath commons-attributes-compiler-2.2.jar
-taglet org.apache.commons.attributes.javadoc.CATaglet
[source files]
]]></source>
@@ -76,7 +76,7 @@
<source><![CDATA[javadoc
]]><b><![CDATA[-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=/home/leo/java]]></b><![CDATA[
- -tagletpath commons-attributes-compiler-2.1.jar
+ -tagletpath commons-attributes-compiler-2.2.jar
-taglet org.apache.commons.attributes.javadoc.CATaglet
[source files]
]]></source>
@@ -94,7 +94,7 @@
<source><![CDATA[javadoc
-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=/home/leo/java
- ]]><b><![CDATA[-tagletpath
commons-attributes-compiler-2.1.jar]]></b><![CDATA[
+ ]]><b><![CDATA[-tagletpath
commons-attributes-compiler-2.2.jar]]></b><![CDATA[
-taglet org.apache.commons.attributes.javadoc.CATaglet
[source files]
]]></source>
@@ -112,7 +112,7 @@
<source><![CDATA[javadoc
-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=/home/leo/java
- -tagletpath commons-attributes-compiler-2.1.jar
+ -tagletpath commons-attributes-compiler-2.2.jar
]]><b><![CDATA[-taglet
org.apache.commons.attributes.javadoc.CATaglet]]></b><![CDATA[
[source files]
]]></source>
@@ -133,7 +133,7 @@
additionalparam="-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=${basedir}">
<taglet
name="org.apache.commons.attributes.javadoc.CATaglet"
- path="${ant.home}/lib/commons-attributes-compiler-2.1.jar"
+ path="${ant.home}/lib/commons-attributes-compiler-2.2.jar"
/>
<fileset dir="${basedir}/" includes="**/*.java" />
</javadoc>]]></source>
Modified: jakarta/commons/proper/attributes/trunk/site/xdocs/index.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/xdocs/index.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/xdocs/index.xml (original)
+++ jakarta/commons/proper/attributes/trunk/site/xdocs/index.xml Mon Jul 10
09:08:12 2006
@@ -64,10 +64,10 @@
<ul>
<li>
- <p>Client API: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-api-2.1.jar">commons-attributes-api-2.1.jar</a></p>
+ <p>Client API: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-api-2.2.jar">commons-attributes-api-2.2.jar</a></p>
</li>
<li>
- <p>Ant task: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-compiler-2.1.jar">commons-attributes-compiler-2.1.jar</a></p>
+ <p>Ant task: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-compiler-2.2.jar">commons-attributes-compiler-2.2.jar</a></p>
</li>
<li>
<p>qDox 1.5: <a
href="http://www.ibiblio.org/maven/qdox/jars/qdox-1.5.jar">qdox-1.5.jar</a></p>
@@ -83,13 +83,13 @@
<ul>
<li>
- <p>Client API: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-api-2.1.jar">commons-attributes-api-2.1.jar</a></p>
+ <p>Client API: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-api-2.2.jar">commons-attributes-api-2.2.jar</a></p>
</li>
<li>
- <p>Ant task: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-compiler-2.1.jar">commons-attributes-compiler-2.1.jar</a></p>
+ <p>Ant task: <a
href="http://www.ibiblio.org/maven/commons-attributes/jars/commons-attributes-compiler-2.2.jar">commons-attributes-compiler-2.2.jar</a></p>
</li>
<li>
- <p>Maven plugin: <a
href="http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.1.jar">commons-attributes-plugin-2.1.jar</a></p>
+ <p>Maven plugin: <a
href="http://cvs.apache.org/~leosutic/commons-attributes-plugin-2.2.jar">commons-attributes-plugin-2.2.jar</a></p>
</li>
</ul>
@@ -100,7 +100,7 @@
<source><![CDATA[<dependency>
<groupId>commons-attributes</groupId>
<artifactId>commons-attributes-api</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>]]></source>
Modified: jakarta/commons/proper/attributes/trunk/site/xdocs/maven_demo.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/xdocs/maven_demo.xml?rev=420577&r1=420576&r2=420577&view=diff
==============================================================================
--- jakarta/commons/proper/attributes/trunk/site/xdocs/maven_demo.xml (original)
+++ jakarta/commons/proper/attributes/trunk/site/xdocs/maven_demo.xml Mon Jul
10 09:08:12 2006
@@ -57,13 +57,13 @@
<source><![CDATA[<dependency>
<groupId>commons-attributes</groupId>
<artifactId>commons-attributes-api</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>
<dependency>
<groupId>commons-attributes</groupId>
<artifactId>commons-attributes-compiler</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>]]></source>
</subsection>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]