updated status to 2.1-RC5;
added excluding the text package as a source modification and unit text exclusion git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@168229 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fddb1a875d
commit
ee5ce24168
15
project.xml
15
project.xml
|
@ -19,7 +19,7 @@ limitations under the License.
|
||||||
|
|
||||||
<id>commons-lang</id>
|
<id>commons-lang</id>
|
||||||
<name>Lang</name>
|
<name>Lang</name>
|
||||||
<currentVersion>2.1-RC4</currentVersion>
|
<currentVersion>2.1-RC5</currentVersion>
|
||||||
<inceptionYear>2001</inceptionYear>
|
<inceptionYear>2001</inceptionYear>
|
||||||
<shortDescription>Java Common Components</shortDescription>
|
<shortDescription>Java Common Components</shortDescription>
|
||||||
<description>
|
<description>
|
||||||
|
@ -106,7 +106,7 @@ limitations under the License.
|
||||||
<developer>
|
<developer>
|
||||||
<name>Steven Caswell</name>
|
<name>Steven Caswell</name>
|
||||||
<id>scaswell</id>
|
<id>scaswell</id>
|
||||||
<email>steven.caswell@gmail.com</email>
|
<email>stevencaswell@apache.org</email>
|
||||||
<organization></organization>
|
<organization></organization>
|
||||||
<roles>
|
<roles>
|
||||||
<role>Java Developer</role>
|
<role>Java Developer</role>
|
||||||
|
@ -364,6 +364,15 @@ limitations under the License.
|
||||||
<build>
|
<build>
|
||||||
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
|
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
|
||||||
<sourceDirectory>src/java</sourceDirectory>
|
<sourceDirectory>src/java</sourceDirectory>
|
||||||
|
<sourceModifications>
|
||||||
|
<sourceModification>
|
||||||
|
<className>FakeClass</className>
|
||||||
|
<excludes>
|
||||||
|
<!-- text package excluded for the 2.1 release -->
|
||||||
|
<exclude>org/apache/commons/lang/text/**/*.java</exclude>
|
||||||
|
</excludes>
|
||||||
|
</sourceModification>
|
||||||
|
</sourceModifications>
|
||||||
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
||||||
<integrationUnitTestSourceDirectory/>
|
<integrationUnitTestSourceDirectory/>
|
||||||
<aspectSourceDirectory/>
|
<aspectSourceDirectory/>
|
||||||
|
@ -375,6 +384,8 @@ limitations under the License.
|
||||||
</includes>
|
</includes>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>**/AllLangTestSuite.java</exclude>
|
<exclude>**/AllLangTestSuite.java</exclude>
|
||||||
|
<!-- text package excluded for the 2.1 release -->
|
||||||
|
<exclude>org/apache/commons/lang/text/**/*.java</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
|
|
Loading…
Reference in New Issue