Author: luc
Date: Fri Feb 25 09:01:00 2011
New Revision: 1074445
URL: http://svn.apache.org/viewvc?rev=1074445&view=rev
Log:
filter out the part of the site we want to include in the binary build (mainly apidocs and
userguide)
Modified:
commons/proper/math/branches/MATH_2_X/pom.xml
commons/proper/math/branches/MATH_2_X/src/main/assembly/bin.xml
Modified: commons/proper/math/branches/MATH_2_X/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/pom.xml?rev=1074445&r1=1074444&r2=1074445&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/pom.xml (original)
+++ commons/proper/math/branches/MATH_2_X/pom.xml Fri Feb 25 09:01:00 2011
@@ -242,7 +242,7 @@
<properties>
<commons.componentid>math</commons.componentid>
<commons.release.version>2.2</commons.release.version>
- <commons.rc.version>RC4</commons.rc.version>
+ <commons.rc.version>RC5</commons.rc.version>
<commons.binary.suffix></commons.binary.suffix>
<commons.jira.id>MATH</commons.jira.id>
<commons.jira.pid>12310485</commons.jira.pid>
Modified: commons/proper/math/branches/MATH_2_X/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/assembly/bin.xml?rev=1074445&r1=1074444&r2=1074445&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/src/main/assembly/bin.xml (original)
+++ commons/proper/math/branches/MATH_2_X/src/main/assembly/bin.xml Fri Feb 25 09:01:00 2011
@@ -41,11 +41,12 @@
<fileSet>
<directory>target/site</directory>
<outputDirectory>docs</outputDirectory>
- <excludes>
- <exclude>**/customsorttypes.js</exclude>
- <exclude>**/sortabletable.js</exclude>
- <exclude>**/stringbuilder.js</exclude>
- </excludes>
+ <includes>
+ <include>apidocs/**</include>
+ <include>css/**</include>
+ <include>images/**</include>
+ <include>userguide/**</include>
+ </includes>
</fileSet>
</fileSets>
</assembly>
|