You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2006/03/03 03:34:55 UTC

svn commit: r382620 - /jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml

Author: skitching
Date: Thu Mar  2 18:34:53 2006
New Revision: 382620

URL: http://svn.apache.org/viewcvs?rev=382620&view=rev
Log:
Initial maven pom

Added:
    jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml

Added: jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml?rev=382620&view=auto
==============================================================================
--- jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml (added)
+++ jakarta/commons/proper/logging/contrib/simon/jcl2/src/core-static/pom.xml Thu Mar  2 18:34:53 2006
@@ -0,0 +1,48 @@
+<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>org.apache.commons.logging</groupId>
+  <artifactId>commons-logging-core-static</artifactId>
+  <packaging>jar</packaging>
+  <version>0.1-SNAPSHOT</version>
+  <name>Commons Logging Core</name>
+  <url>http://jakarta.apache.org/commons/logging</url>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons.logging</groupId>
+      <artifactId>commons-logging-core</artifactId>
+      <version>0.1-SNAPSHOT</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <directory>target</directory>
+    <outputDirectory>target/classes</outputDirectory>
+    <finalName>${artifactId}-${version}</finalName>
+    <testOutputDirectory>target/test-classes</testOutputDirectory>
+    <sourceDirectory>java</sourceDirectory>
+    <testSourceDirectory>test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>resources</directory>
+      </resource>
+    </resources>
+<!--
+    <testResources>
+      <testResource>
+        <directory>src/test/resources</directory>
+      </testResource>
+    </testResources>
+-->
+
+
+  </build>
+</project>
+



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org