[LOGBack-dev] svn commit: r393 - logback/classic/trunk/examples
noreply.ceki at qos.ch
noreply.ceki at qos.ch
Sun Aug 6 13:20:09 CEST 2006
Author: ceki
Date: Sun Aug 6 13:20:08 2006
New Revision: 393
Added:
logback/classic/trunk/examples/pom.xml
Log:
attempt to have the examples built by Maven
Added: logback/classic/trunk/examples/pom.xml
==============================================================================
--- (empty file)
+++ logback/classic/trunk/examples/pom.xml Sun Aug 6 13:20:08 2006
@@ -0,0 +1,40 @@
+<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>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>0.2-SNAPSHOT</version>
+ </parent>
+
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic-examples</artifactId>
+ <packaging>jar</packaging>
+ <name>Logback Classic Module Examples</name>
+
+
+
+
+ <build>
+ <sourceDirectory>./src/</sourceDirectory>
+ <outputDirectory>./classes/</outputDirectory>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+
+ </plugins>
+
+
+ </build>
+
+</project>
\ No newline at end of file
More information about the logback-dev
mailing list