[LOGBack-dev] svn commit: r88 - in logback/access/trunk: . test
noreply.seb at qos.ch
noreply.seb at qos.ch
Mon Jul 17 10:57:02 CEST 2006
Author: seb
Date: Mon Jul 17 10:57:01 2006
New Revision: 88
Added:
logback/access/trunk/pom.xml
Removed:
logback/access/trunk/test/
Log:
single module pom + dir structure update
Added: logback/access/trunk/pom.xml
==============================================================================
--- (empty file)
+++ logback/access/trunk/pom.xml Mon Jul 17 10:57:01 2006
@@ -0,0 +1,156 @@
+<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">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>access</artifactId>
+ <packaging>jar</packaging>
+ <version>0.1-SNAPSHOT</version>
+ <name>LOGBack Access Module</name>
+
+ <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>
+ <artifactId>core</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>tomcat</groupId>
+ <artifactId>catalina</artifactId>
+ <version>5.5.12</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.0.0beta9</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>com.caucho</groupId>
+ <artifactId>resin</artifactId>
+ <version>3.0.9</version>
+ <scope>compile</scope>
+ </dependency>
+
+
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>servlet-api-2.5</artifactId>
+ <version>6.0.0beta9</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+
+ <!-- plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>once</forkMode>
+ <reportFormat>plain</reportFormat>
+ <trimStackTrace>false</trimStackTrace>
+ <excludes>
+ <exclude>**/AllTest.java</exclude>
+ <exclude>**/PackageTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin -->
+
+
+ <!-- EOF PLUGINS -->
+ </plugins>
+ </build>
+
+<!-- LOGBack Access Repository ================================================ -->
+
+ <scm>
+ <connection>
+ scm:svn:http://svn.qos.ch/viewcvs/logback/access/trunk/
+ </connection>
+ <developerConnection>
+ scm:svn:https://svn.qos.ch/repos/logback/access/trunk/
+ </developerConnection>
+ <url>http://svn.qos.ch/viewcvs/logback/access/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 at 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 at 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 at qos.ch</post>
+ <archive>http://www.qos.ch/pipermail/logback-dev/</archive>
+ </mailingList>
+ </mailingLists>
+
+ <!-- LOGBack Committers ==================================================== -->
+ <developers>
+
+ <developer>
+ <name>Ceki Gulcu</name>
+ <email>ceki at qos.ch</email>
+ <organization>QOS.ch</organization>
+ <organizationUrl>http://www.qos.ch</organizationUrl>
+ </developer>
+
+ <developer>
+ <name>Sebastien Pennec</name>
+ <email>sebastien at qos.ch</email>
+ <organization>QOS.ch</organization>
+ <organizationUrl>http://www.qos.ch</organizationUrl>
+ </developer>
+
+ </developers>
+</project>
\ No newline at end of file
More information about the logback-dev
mailing list