Removed extend, migrated repository, Apache project metadata and adjusted build settings appropriately.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
67
project.xml
67
project.xml
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
Copyright 2001-2004 The Apache Software Foundation.
|
Copyright 2001-2004 The Apache Software Foundation.
|
||||||
@@ -17,35 +16,64 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<project>
|
<project>
|
||||||
<extend>../commons-build/project.xml</extend>
|
<pomVersion>3</pomVersion>
|
||||||
|
|
||||||
<name>Logging</name>
|
<name>Logging</name>
|
||||||
<id>commons-logging</id>
|
<id>commons-logging</id>
|
||||||
<currentVersion>1.0-dev</currentVersion>
|
<currentVersion>1.0-dev</currentVersion>
|
||||||
|
|
||||||
<organization>
|
|
||||||
<name>Apache Software Foundation</name>
|
|
||||||
<url>http://www.apache.org</url>
|
|
||||||
<logo>http://jakarta.apache.org/images/jakarta-logo.gif</logo>
|
|
||||||
</organization>
|
|
||||||
|
|
||||||
<inceptionYear>2001</inceptionYear>
|
<inceptionYear>2001</inceptionYear>
|
||||||
<shortDescription>Commons Logging</shortDescription>
|
<shortDescription>Commons Logging</shortDescription>
|
||||||
<description>
|
<description>
|
||||||
Commons Logging is a thin adapter allowing configurable bridging to other,
|
Commons Logging is a thin adapter allowing configurable bridging to other,
|
||||||
well known logging systems.
|
well known logging systems.
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<logo>/images/logo.png</logo>
|
<logo>/images/logo.png</logo>
|
||||||
|
|
||||||
<repository>
|
<url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
|
||||||
<connection>scm:cvs:${logging.cvs}:jakarta-commons/logging/</connection>
|
<package>org.apache.commons.${pom.artifactId.substring(8)}</package>
|
||||||
<url>http://cvs.apache.org/viewcvs/jakarta-commons/logging/</url>
|
|
||||||
</repository>
|
|
||||||
|
|
||||||
<url>http://jakarta.apache.org/commons/logging/</url>
|
<organization>
|
||||||
|
<name>The Apache Software Foundation</name>
|
||||||
|
<url>http://jakarta.apache.org</url>
|
||||||
|
<logo>http://jakarta.apache.org/images/original-jakarta-logo.gif</logo>
|
||||||
|
</organization>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>/LICENSE.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<gumpRepositoryId>jakarta</gumpRepositoryId>
|
||||||
|
<issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
|
||||||
|
<siteAddress>jakarta.apache.org</siteAddress>
|
||||||
|
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
|
||||||
|
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
|
||||||
|
|
||||||
|
<repository>
|
||||||
|
<!--<connection>scm:cvs:${logging.cvs}:jakarta-commons/logging/</connection>-->
|
||||||
|
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/${pom.artifactId.substring(8)}</connection>
|
||||||
|
<url>http://cvs.apache.org/viewcvs/jakarta-commons/${pom.artifactId.substring(8)}/</url>
|
||||||
|
</repository>
|
||||||
|
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Commons Dev List</name>
|
||||||
|
<subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
|
||||||
|
<unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
|
||||||
|
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Commons User List</name>
|
||||||
|
<subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
|
||||||
|
<unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
|
||||||
|
<archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
<developer>
|
<developer>
|
||||||
<name>Morgan Delagrange</name>
|
<name>Morgan Delagrange</name>
|
||||||
@@ -131,6 +159,9 @@ well known logging systems.
|
|||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
|
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
|
||||||
|
<sourceDirectory>src/java</sourceDirectory>
|
||||||
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
||||||
<sourceModifications>
|
<sourceModifications>
|
||||||
<sourceModification>
|
<sourceModification>
|
||||||
<className>java.util.logging.Logger</className>
|
<className>java.util.logging.Logger</className>
|
||||||
|
|||||||
Reference in New Issue
Block a user