Removing the Maven1 build system
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@655241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0d1579a73c
commit
04f767b393
53
maven.xml
53
maven.xml
|
@ -1,53 +0,0 @@
|
|||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<project default="java:jar"
|
||||
xmlns:j="jelly:core">
|
||||
|
||||
<!-- need various bits in the src build. Binary build is handled by Ant -->
|
||||
<postGoal name="dist:prepare-src-filesystem">
|
||||
<j:set var="maven.dist.src.assembly.dir" value="${pom.getPluginContext('maven-dist-plugin').getVariable('maven.dist.src.assembly.dir')}" />
|
||||
|
||||
<!-- Copy Files -->
|
||||
<copy todir="${maven.dist.src.assembly.dir}">
|
||||
<fileset dir=".">
|
||||
<include name="RELEASE-NOTES*.txt"/>
|
||||
<include name="NOTICE.txt"/>
|
||||
<include name="STATUS.html"/>
|
||||
<include name="default.properties"/>
|
||||
<include name="checkstyle.xml"/>
|
||||
<include name="pom.xml"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<!-- Copy XDocs -->
|
||||
<copy todir="${maven.dist.src.assembly.dir}/xdocs">
|
||||
<fileset dir="xdocs" />
|
||||
</copy>
|
||||
|
||||
</postGoal>
|
||||
|
||||
<!-- Release process uses ant for Binary build, however for completeness... -->
|
||||
<postGoal name="dist:prepare-bin-filesystem">
|
||||
|
||||
<copy todir="${maven.dist.bin.assembly.dir}">
|
||||
<fileset file="${basedir}/NOTICE.txt"/>
|
||||
<fileset file="${basedir}/RELEASE-NOTES.txt"/>
|
||||
</copy>
|
||||
|
||||
</postGoal>
|
||||
|
||||
</project>
|
|
@ -1,61 +0,0 @@
|
|||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
# $Id$
|
||||
|
||||
maven.repo.remote=http://repo1.maven.org/maven
|
||||
|
||||
maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
|
||||
|
||||
maven.checkstyle.properties=checkstyle.xml
|
||||
maven.junit.fork=true
|
||||
|
||||
maven.xdoc.date=left
|
||||
maven.xdoc.version=${pom.currentVersion}
|
||||
maven.xdoc.developmentProcessUrl=http://commons.apache.org/charter.html
|
||||
maven.xdoc.poweredby.image=maven-feather.png
|
||||
|
||||
# Jar Manifest Additional Attributes
|
||||
maven.jar.manifest.attributes.list=Implementation-Vendor-Id,X-Compile-Source-JDK,X-Compile-Target-JDK
|
||||
maven.jar.manifest.attribute.Implementation-Vendor-Id=org.apache
|
||||
maven.jar.manifest.attribute.X-Compile-Source-JDK=${maven.compile.source}
|
||||
maven.jar.manifest.attribute.X-Compile-Target-JDK=${maven.compile.target}
|
||||
|
||||
# Make the source distro unzip to a different directory
|
||||
maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}-src
|
||||
|
||||
# The Sun Javadoc for versions prior to 1.3 are off-line.
|
||||
maven.javadoc.links=http://java.sun.com/j2se/1.3/docs/api/
|
||||
maven.javadoc.source=1.3
|
||||
maven.javadoc.overview=./src/java/org/apache/commons/lang/overview.html
|
||||
|
||||
# This links to the current stable version. We could have LANG_CURRENT, but this
|
||||
# is simpler to manage at the moment.
|
||||
maven.jdiff.new.tag=CURRENT
|
||||
maven.jdiff.old.tag=LANG_2_3
|
||||
|
||||
# Generate class files for specific VM version (e.g., 1.1 or 1.2).
|
||||
# Note that the default value depends on the JVM that is running Ant.
|
||||
# In particular, if you use JDK 1.4+ the generated classes will not be usable
|
||||
# for a 1.1 Java VM unless you explicitly set this attribute to the value 1.1
|
||||
# (which is the default value for JDK 1.1 to 1.3).
|
||||
maven.compile.target = 1.2
|
||||
|
||||
# Specifies the source version for the Java compiler.
|
||||
# Corresponds to the source attribute for the ant javac task.
|
||||
# Valid values are 1.3, 1.4, 1.5.
|
||||
maven.compile.source = 1.3
|
473
project.xml
473
project.xml
|
@ -1,473 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<project>
|
||||
<pomVersion>3</pomVersion>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<name>Lang</name>
|
||||
<currentVersion>3.0-SNAPSHOT</currentVersion>
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
<shortDescription>Java Common Components</shortDescription>
|
||||
<description>
|
||||
Commons Lang, a package of Java utility classes for the
|
||||
classes that are in java.lang's hierarchy, or are considered to be so
|
||||
standard as to justify existence in java.lang.
|
||||
</description>
|
||||
<logo>/images/logo.png</logo>
|
||||
<url>http://commons.apache.org/lang/</url>
|
||||
<package>org.apache.commons.lang</package>
|
||||
<organization>
|
||||
<name>The Apache Software Foundation</name>
|
||||
<url>http://commons.apache.org/</url>
|
||||
<logo>http://commons.apache.org/images/logo.png</logo>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>/LICENSE.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<gumpRepositoryId>commons</gumpRepositoryId>
|
||||
<issueTrackingUrl>http://issues.apache.org/jira/</issueTrackingUrl>
|
||||
<siteAddress>people.apache.org</siteAddress>
|
||||
<siteDirectory>/www/commons.apache.org/lang/</siteDirectory>
|
||||
<distributionDirectory>/www/people.apache.org/builds/commons/lang/</distributionDirectory>
|
||||
<repository>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/trunk</connection>
|
||||
<url>http://svn.apache.org/viewvc/commons/proper/lang/trunk</url>
|
||||
</repository>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Commons Dev List</name>
|
||||
<subscribe>dev-subscribe@commons.apache.org</subscribe>
|
||||
<unsubscribe>dev-unsubscribe@commons.apache.org</unsubscribe>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/commons-dev/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Commons User List</name>
|
||||
<subscribe>user-subscribe@commons.apache.org</subscribe>
|
||||
<unsubscribe>user-unsubscribe@commons.apache.org</unsubscribe>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/commons-user/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Daniel Rall</name>
|
||||
<id>dlr</id>
|
||||
<email>dlr@finemaltcoding.com</email>
|
||||
<organization>CollabNet, Inc.</organization>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Stephen Colebourne</name>
|
||||
<id>scolebourne</id>
|
||||
<email>scolebourne@joda.org</email>
|
||||
<organization>SITA ATS Ltd</organization>
|
||||
<timezone>0</timezone>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Henri Yandell</name>
|
||||
<id>bayard</id>
|
||||
<email>bayard@apache.org</email>
|
||||
<organization/>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Steven Caswell</name>
|
||||
<id>scaswell</id>
|
||||
<email>stevencaswell@apache.org</email>
|
||||
<organization/>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Robert Burrell Donkin</name>
|
||||
<id>rdonkin</id>
|
||||
<email>rdonkin@apache.org</email>
|
||||
<organization/>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Gary D. Gregory</name>
|
||||
<id>ggregory</id>
|
||||
<email>ggregory@seagullsw.com</email>
|
||||
<organization>Seagull Software</organization>
|
||||
<timezone>-8</timezone>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Phil Steitz</name>
|
||||
<id>psteitz</id>
|
||||
<email>phil@steitz.com</email>
|
||||
<organization/>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Fredrik Westermarck</name>
|
||||
<id>fredrik</id>
|
||||
<email/>
|
||||
<organization/>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>James Carman</name>
|
||||
<id>jcarman</id>
|
||||
<email>jcarman@apache.org</email>
|
||||
<organization>Carman Consulting, Inc.</organization>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Niall Pemberton</name>
|
||||
<id>niallp</id>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Matt Benson</name>
|
||||
<id>mbenson</id>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>C. Scott Ananian</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Audley</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephane Bailliez</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Becke</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ola Berg</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nathan Beyer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stefan Bodewig</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Janek Bogucki</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mike Bowler</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sean Brown</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alexander Day Chaffee</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Al Chou</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Greg Coladonato</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Maarten Coene</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Justin Couch</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Davey</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Norm Deane</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ringo De Smet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Russel Dittmar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Steve Downey</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthias Eichel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Elkins</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Feldhacker</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Pete Gieser</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jason Gritman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthew Hawthorne</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Heuer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Oliver Heger</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Hyzer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc Johnson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Shaun Kalley</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tetsuya Kaneuchi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nissim Karpenstein</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ed Korthof</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Holger Krauth</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rafal Krupinski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rafal Krzewski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Craig R. McClanahan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rand McNeely</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dave Meikle</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nikolay Metchev</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Kasper Nielsen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tim O'Brien</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian S O'Neill</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrew C. Oliver</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alban Peignier</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Moritz Petersen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dmitri Plotnikov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Neeme Praks</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Eric Pugh</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephen Putman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Travis Reeder</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Antony Riley</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Scott Sanders</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ralph Schaer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Henning P. Schmiedehausen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sean Schofield</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Reuben Sivan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ville Skytta</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jan Sorensen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Glen Stampoultzis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Scott Stanchfield</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jon S. Stevens</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sean C. Sullivan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ashwin Suresh</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Helge Tesgaard</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Arun Mammen Thomas</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Masato Tezuka</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jeff Varszegi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Webb</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mario Winterer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stepan Koltsov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Holger Hoffstatte</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
<!-- Lang should depend on very little -->
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<properties>
|
||||
<scope>test</scope>
|
||||
<comment>Required only for testing.</comment>
|
||||
</properties>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>maven</groupId>
|
||||
<artifactId>maven-xdoc-plugin</artifactId>
|
||||
<version>1.9.2</version>
|
||||
<url>http://maven.apache.org/reference/plugins/xdoc/</url>
|
||||
<type>plugin</type>
|
||||
<properties>
|
||||
<comment>
|
||||
<strong>Site Only</strong> - v1.9.2 (minimum)
|
||||
</comment>
|
||||
</properties>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>maven-plugins</groupId>
|
||||
<artifactId>maven-findbugs-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<url>http://maven-plugins.sourceforge.net/maven-findbugs-plugin/</url>
|
||||
<type>plugin</type>
|
||||
<properties>
|
||||
<comment>
|
||||
<strong>Site Only</strong> - v1.9.2 (minimum)
|
||||
</comment>
|
||||
</properties>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>maven-plugins</groupId>
|
||||
<artifactId>maven-cobertura-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin/</url>
|
||||
<type>plugin</type>
|
||||
<properties>
|
||||
<scope>test</scope>
|
||||
<comment>Required only for generating test coverage reports.</comment>
|
||||
</properties>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<nagEmailAddress>dev@commons.apache.org</nagEmailAddress>
|
||||
<sourceDirectory>src/java</sourceDirectory>
|
||||
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>.</directory>
|
||||
<targetPath>META-INF</targetPath>
|
||||
<includes>
|
||||
<include>NOTICE.txt</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
<!-- Unit test classes -->
|
||||
<unitTest>
|
||||
<includes>
|
||||
<include>**/*TestSuite.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/AllLangTestSuite.java</exclude>
|
||||
</excludes>
|
||||
</unitTest>
|
||||
</build>
|
||||
<reports>
|
||||
<!--report>maven-changes-plugin</report-->
|
||||
<report>maven-findbugs-plugin</report>
|
||||
<report>maven-checkstyle-plugin</report>
|
||||
<report>maven-javadoc-plugin</report>
|
||||
<report>maven-jdepend-plugin</report>
|
||||
<report>maven-junit-report-plugin</report>
|
||||
<report>maven-jxr-plugin</report>
|
||||
<report>maven-license-plugin</report>
|
||||
<!-- report>maven-jdiff-plugin</report -->
|
||||
<report>maven-pmd-plugin</report>
|
||||
<!-- <report>maven-linkcheck-plugin</report> -->
|
||||
</reports>
|
||||
</project>
|
Loading…
Reference in New Issue