Author: mbenson
Date: Sat Sep 6 09:09:50 2008
New Revision: 692673
URL: http://svn.apache.org/viewvc?rev=692673&view=rev
Log:
add pom
Added:
commons/sandbox/flatfile/trunk/pom.xml (with props)
Added: commons/sandbox/flatfile/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/flatfile/trunk/pom.xml?rev=692673&view=auto
==============================================================================
--- commons/sandbox/flatfile/trunk/pom.xml (added)
+++ commons/sandbox/flatfile/trunk/pom.xml Sat Sep 6 09:09:50 2008
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<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>
+ <parent>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-sandbox-parent</artifactId>
+ <version>7</version>
+ </parent>
+ <artifactId>commons-flatfile</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>Commons Flatfile (Sandbox)</name>
+ <url>http://commons.apache.org/sandbox/flatfile/</url>
+ <inceptionYear>2008</inceptionYear>
+ <description>
+ Commons Flatfile provides multiple complementary mechanisms for working
with
+ "flat file" structures in Java.
+ </description>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.morph</groupId>
+ <artifactId>morph</artifactId>
+ <version>1.1.1</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>antlr</groupId>
+ <artifactId>antlr</artifactId>
+ <version>2.7.7</version>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+ <developers>
+ <developer>
+ <id>mbenson</id>
+ <name>Matt Benson</name>
+ <email>mbenson AT apache DOT org</email>
+ <organization>Apache</organization>
+ </developer>
+ </developers>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/flatfile/trunk/</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/flatfile/trunk/</developerConnection>
+ <url>http://svn.apache.org/viewvc/commons/sandbox/flatfile/trunk/</url>
+ </scm>
+ <build>
+ <testResources>
+ <testResource>
+ <directory>src/test/java/</directory>
+ <filtering>false</filtering>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>antlr-maven-plugin</artifactId>
+ <configuration>
+ <!--
+ Comma separated list of grammar files or pattern grammar files
+ By default, grammar file(s) is in ${basedir}/src/main/antlr
+ -->
+ <grammars>EntityParser.g,EntityTreeParser.g</grammars>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <distributionManagement>
+ <site>
+ <id>website</id>
+ <name>Apache Website</name>
+
<url>scp://people.apache.org/www/commons.apache.org/sandbox/flatfile/</url>
+ </site>
+ </distributionManagement>
+
+ <!-- Compiler source and target JVM (see parent pom) -->
+ <properties>
+ <maven.compile.source>1.5</maven.compile.source>
+ <maven.compile.target>1.5</maven.compile.target>
+ <commons.componentid>flatfile</commons.componentid>
+ </properties>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <targetJdk>1.5</targetJdk>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
Propchange: commons/sandbox/flatfile/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native