
Author: seb Date: Mon Jul 17 10:55:26 2006 New Revision: 86 Modified: logback/classic/trunk/pom.xml Log: back to single module structure Modified: logback/classic/trunk/pom.xml ============================================================================== --- logback/classic/trunk/pom.xml (original) +++ logback/classic/trunk/pom.xml Mon Jul 17 10:55:26 2006 @@ -1,12 +1,7 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - - <parent> - <artifactId>LOGBack</artifactId> - <groupId>ch.qos</groupId> - <version>0.1-SNAPSHOT</version> - </parent> + <modelVersion>4.0.0</modelVersion> @@ -14,10 +9,13 @@ <artifactId>classic</artifactId> <packaging>jar</packaging> <version>0.1-SNAPSHOT</version> - <name>LOGBack Classic Module</name> + <name>LOGBack Classic Module</name> - <url>http://logback.qos.ch</url> - + <url>http://logback.qos.ch</url> + <description> + LOGBack: the generic, reliable, fast and flexible logging library for Java. + </description> + <dependencies> <dependency> <groupId>ch.qos.logback</groupId> @@ -32,15 +30,15 @@ <version>0.1-SNAPSHOT</version> <classifier>tests</classifier> <scope>test</scope> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> </dependency> </dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> <build> <plugins> @@ -78,5 +76,75 @@ <targetPath>src/test/input</targetPath> </testResource> </testResources> - </build> + </build> + +<!-- LOGBack Classic Repository ================================================ --> + + <scm> + <connection> + scm:svn:http://svn.qos.ch/viewcvs/logback/classic/trunk/ + </connection> + <developerConnection> + scm:svn:https://svn.qos.ch/repos/logback/classic/trunk/ + </developerConnection> + <url>http://svn.qos.ch/viewcvs/logback/classic/trunk/</url> + </scm> + + <!-- Mailing Lists ======================================================= --> + <mailingLists> + <mailingList> + <name>LOGBack Announce List</name> + <subscribe> + http://qos.ch/mailman/listinfo/logback-announce + </subscribe> + <unsubscribe> + http://qos.ch/mailman/options/logback-announce + </unsubscribe> + <post>logback-announce@qos.ch</post> + <archive> + http://www.qos.ch/pipermail/logback-announce/ + </archive> + </mailingList> + <mailingList> + <name>LOGBack User List</name> + <subscribe> + http://qos.ch/mailman/listinfo/logback-user + </subscribe> + <unsubscribe> + http://qos.ch/mailman/options/logback-user + </unsubscribe> + <post>logback-user@qos.ch</post> + <archive>http://www.qos.ch/pipermail/logback-user/</archive> + </mailingList> + <mailingList> + <name>LOGBack Dev List</name> + <subscribe> + http://qos.ch/mailman/listinfo/logback-dev + </subscribe> + <unsubscribe> + http://qos.ch/mailman/options/logback-dev + </unsubscribe> + <post>logback-dev@qos.ch</post> + <archive>http://www.qos.ch/pipermail/logback-dev/</archive> + </mailingList> + </mailingLists> + + <!-- LOGBack Committers ==================================================== --> + <developers> + + <developer> + <name>Ceki Gulcu</name> + <email>ceki@qos.ch</email> + <organization>QOS.ch</organization> + <organizationUrl>http://www.qos.ch</organizationUrl> + </developer> + + <developer> + <name>Sebastien Pennec</name> + <email>sebastien@qos.ch</email> + <organization>QOS.ch</organization> + <organizationUrl>http://www.qos.ch</organizationUrl> + </developer> + + </developers> </project> \ No newline at end of file