
Author: seb Date: Fri Jul 14 17:35:44 2006 New Revision: 81 Modified: logback/classic/trunk/pom.xml Log: added dependencies Modified: logback/classic/trunk/pom.xml ============================================================================== --- logback/classic/trunk/pom.xml (original) +++ logback/classic/trunk/pom.xml Fri Jul 14 17:35:44 2006 @@ -1,31 +1,82 @@ -<?xml version="1.0"?><project> - <parent> - <artifactId>LOGBack</artifactId> - <groupId>ch.qos.logback</groupId> - <version>0.1-SNAPSHOT</version> - </parent> - - <modelVersion>4.0.0</modelVersion> - - <groupId>ch.qos.logback.classic</groupId> - <artifactId>logback-classic</artifactId> - <name>LOGBack classic</name> - <version>0.1-SNAPSHOT</version> - - <url>http://logback.qos.ch</url> - - <dependencies> - <dependency> - <groupId>ch.qos.logback.core</groupId> - <artifactId>logback-core</artifactId> - <version>0.1-SNAPSHOT</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - </dependencies> +<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> + + <groupId>ch.qos.logback</groupId> + <artifactId>classic</artifactId> + <packaging>jar</packaging> + <version>0.1-SNAPSHOT</version> + <name>LOGBack Classic Module</name> + + <url>http://logback.qos.ch</url> + + <dependencies> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>core</artifactId> + <version>0.1-SNAPSHOT</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>core</artifactId> + <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> + + <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> + + <testResources> + <testResource> + <directory>src/test/input</directory> + <targetPath>src/test/input</targetPath> + </testResource> + </testResources> + </build> </project> \ No newline at end of file