leosimons 2003/05/30 14:42:16
Added: . project-common.xml project.properties project.xml
Log:
get started on POMs and place them where they belong. I am getting unit test
failures for some reason. Need to figure out how to debug that.
Revision Changes Path
1.1 avalon/project-common.xml
Index: project-common.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!-- this is the "common base" maven project
descriptor containing common project management
information.
Use <extend>../project.xml</extend> in subdirectories
to inherit these defaults. -->
<project>
<pomVersion>3</pomVersion>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>
<inceptionYear>1997</inceptionYear>
<shortDescription>Apache Server Framework</shortDescription>
<description>
The Avalon project is an effort to create, design, develop and
maintain a common framework and set of components for
applications written using the Java language.
</description>
<package>org.apache.avalon</package>
<gumpRepositoryId>avalon</gumpRepositoryId>
<url>http://avalon.apache.org/</url>
<issueTrackingUrl><![CDATA[http://nagoya.apache.org/bugzilla/reports.cgi?product=Avalon&output=most_doomed&links=1&banner=1&quip=0]]></issueTrackingUrl>
<repository>
<connection>scm:cvs:pserver:[EMAIL
PROTECTED]:/home/cvspublic:avalon</connection>
<url>http://cvs.apache.org/viewcvs/avalon/</url>
</repository>
<mailingLists>
<mailingList>
<name>Avalon User List</name>
<subscribe>
[EMAIL PROTECTED]
</subscribe>
<unsubscribe>
[EMAIL PROTECTED]
</unsubscribe>
<archive>
http://marc.theaimsgroup.com/?l=avalon-users
</archive>
</mailingList>
<mailingList>
<name>Avalon Development List</name>
<subscribe>
[EMAIL PROTECTED]
</subscribe>
<unsubscribe>
[EMAIL PROTECTED]
</unsubscribe>
<archive>
http://marc.theaimsgroup.com/?l=avalon-dev
</archive>
</mailingList>
<mailingList>
<name>Avalon CVS List</name>
<subscribe>
[EMAIL PROTECTED]
</subscribe>
<unsubscribe>
[EMAIL PROTECTED]
</unsubscribe>
<archive>
http://nagoya.apache.org/eyebrowse/SummarizeList?listId=8
</archive>
</mailingList>
</mailingLists>
<build>
<nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<!-- Unit test cases -->
<unitTest>
<includes>
<include>**/*TestCase.java</include>
</includes>
</unitTest>
<!-- Resources that are packaged up inside the JAR file -->
<resources>
<includes>
<include>*.conf</include>
<include>*.xconf</include>
<include>*.resources</include>
<include>*.properties</include>
</includes>
</resources>
</build>
</project>
1.1 avalon/project.properties
Index: project.properties
===================================================================
maven.repo.remote = http://www.apache.org/dist/avalon/,http://www.ibiblio.org/maven/
1.1 avalon/project.xml
Index: project.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- please take care to synchronize project.properties
with this file. -->
<extend>./project-common.xml</extend>
<name>avalon-framework</name>
<id>avalon-framework</id>
<currentVersion>4.1.5-dev</currentVersion>
<inceptionYear>1997</inceptionYear>
<shortDescription>Avalon Framework</shortDescription>
<description>
The Avalon Framework consists of interfaces that define
relationships between commonly used application components,
best-of-practice pattern enforcements, and several
lightweight convenience implementations of the generic
components.
</description>
<versions>
<version>
<id>4.1.4</id>
<name>4.1.4</name>
<tag>AVALON_4_1_4</tag>
</version>
<version>
<id>4.1.3</id>
<name>4.1.3</name>
<tag>Avalon_4_1_3</tag>
</version>
<version>
<id>4.1.2</id>
<name>4.1.2</name>
<tag>Avalon_4_1_2</tag>
</version>
<version>
<id>4.1.1</id>
<name>4.1.1</name>
<tag>AVALON_4_1_1</tag>
</version>
<version>
<id>4.1</id>
<name>4.1</name>
<tag>AVALON_4_1</tag>
</version>
<version>
<id>4.0</id>
<name>4.0</name>
<tag>Avalon4_0_final</tag>
</version>
</versions>
<dependencies>
<dependency>
<id>junit</id>
<version>3.8.1</version>
<url>http://www.junit.org/</url>
</dependency>
<dependency>
<id>xml-apis</id>
<version>2.0.2</version>
</dependency>
<dependency>
<id>xerces</id>
<version>2.3.0</version>
</dependency>
<dependency>
<id>xalan</id>
<version>2.4.1</version>
</dependency>
<dependency>
<id>log4j</id>
<version>1.2.8</version>
</dependency>
<dependency>
<id>logkit</id>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<sourceModifications>
<sourceModification>
<className>java.util.logging.Logger</className>
<excludes>
<exclude>**/Jdk14Logger.java</exclude>
</excludes>
</sourceModification>
</sourceModifications>
</build>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]