Author: sebb
Date: Fri Dec 2 23:30:01 2011
New Revision: 1209778
URL: http://svn.apache.org/viewvc?rev=1209778&view=rev
Log:
Basic POM to allow testing against 2.1-SNAPSHOT
Added:
commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml (with
props)
Added: commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml
URL:
http://svn.apache.org/viewvc/commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml?rev=1209778&view=auto
==============================================================================
--- commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml (added)
+++ commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml Fri Dec
2 23:30:01 2011
@@ -0,0 +1,84 @@
+<?xml version="1.0"?>
+<!--
+ 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">
+ <parent>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-parent</artifactId>
+ <version>14</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-jexl-test</artifactId>
+ <version>2.0.1-TEST-SNAPSHOT</version>
+ <name>Commons JEXL</name>
+ <inceptionYear>2001</inceptionYear>
+ <description>Jexl is an implementation of the JSTL Expression Language
with extensions.</description>
+ <url>http://commons.apache.org/jexl/</url>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-jexl</artifactId>
+ <version>2.1-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- For JSR-223 API -->
+ <dependency>
+ <groupId>org.apache.bsf</groupId>
+ <artifactId>bsf-api</artifactId>
+ <version>3.0-beta3</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <properties>
+ <maven.compile.source>1.5</maven.compile.source>
+ <maven.compile.target>1.5</maven.compile.target>
+ <commons.componentid>jexl</commons.componentid>
+ </properties>
+
+ <build>
+ <defaultGoal>surefire:test</defaultGoal>
+ <!-- ensure we do not try to compile sources -->
+ <sourceDirectory/>
+ <!-- ensure we do not pick up local test objects -->
+ <outputDirectory/>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file
Propchange: commons/proper/jexl/branches/COMMONS_JEXL_2_0_1_TEST/pom-test.xml
------------------------------------------------------------------------------
svn:eol-style = native