[jboss-svn-commits] JBoss Common SVN: r1940 - branches/logging_refactoring/common-logging-jdk/trunk
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Aug 10 14:29:03 EDT 2006
Author: ruel.loehr at jboss.com
Date: 2006-08-10 14:29:02 -0400 (Thu, 10 Aug 2006)
New Revision: 1940
Added:
branches/logging_refactoring/common-logging-jdk/trunk/pom.xml
Log:
add the pom.xml file
Added: branches/logging_refactoring/common-logging-jdk/trunk/pom.xml
===================================================================
--- branches/logging_refactoring/common-logging-jdk/trunk/pom.xml 2006-08-10 18:22:31 UTC (rev 1939)
+++ branches/logging_refactoring/common-logging-jdk/trunk/pom.xml 2006-08-10 18:29:02 UTC (rev 1940)
@@ -0,0 +1,108 @@
+<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>jboss.logging.jdk</groupId>
+ <artifactId>jboss-logging-jdk</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0.1.TEST</version>
+ <name>JBoss Logging JDK</name>
+ <url>http://www.jboss.org</url>
+ <description>JBoss Logging JDK classes</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+
+ <repositories>
+ <repository>
+ <id>jboss</id>
+ <name>JBoss Inc. Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.com/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jbosspluginrepo</id>
+ <name>jboss plugin repository</name>
+ <url>http://repository.jboss.com/maven2</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ <pluginRepository>
+ <id>central</id>
+ <name>LSU maven2 mirror</name>
+ <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+
+ <build>
+ <sourceDirectory>src/main/java</sourceDirectory>
+ <plugins>
+
+
+
+ <!-- define how we want compilation to take place
+ here, we accept most of the defaults but say that we want the
+ optimization flag set, and define the source and target to be 1.4,
+ these setting will be inherited by child projects -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <optimize>true</optimize>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+
+ <!-- define that we wish to create src jars -->
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>1.0.1.TEST</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss.common.core</groupId>
+ <artifactId>jboss-common-core</artifactId>
+ <version>1.0.1.TEST</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+
+</project>
+
More information about the jboss-svn-commits
mailing list