You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/01/27 23:59:39 UTC

svn commit: r500662 - in /geronimo/sandbox/build-support/testing: ./ branches/ tags/ trunk/ trunk/iteration.properties trunk/pom.xml trunk/testscript

Author: jdillon
Date: Sat Jan 27 14:59:38 2007
New Revision: 500662

URL: http://svn.apache.org/viewvc?view=rev&rev=500662
Log:
Test project to help verify harness functionality

Added:
    geronimo/sandbox/build-support/testing/
    geronimo/sandbox/build-support/testing/branches/
    geronimo/sandbox/build-support/testing/tags/
    geronimo/sandbox/build-support/testing/trunk/
    geronimo/sandbox/build-support/testing/trunk/iteration.properties   (with props)
    geronimo/sandbox/build-support/testing/trunk/pom.xml   (with props)
    geronimo/sandbox/build-support/testing/trunk/testscript   (with props)

Added: geronimo/sandbox/build-support/testing/trunk/iteration.properties
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/testing/trunk/iteration.properties?view=auto&rev=500662
==============================================================================
--- geronimo/sandbox/build-support/testing/trunk/iteration.properties (added)
+++ geronimo/sandbox/build-support/testing/trunk/iteration.properties Sat Jan 27 14:59:38 2007
@@ -0,0 +1,4 @@
+1=a
+2=b
+3=c
+

Propchange: geronimo/sandbox/build-support/testing/trunk/iteration.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/build-support/testing/trunk/iteration.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/build-support/testing/trunk/iteration.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/sandbox/build-support/testing/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/testing/trunk/pom.xml?view=auto&rev=500662
==============================================================================
--- geronimo/sandbox/build-support/testing/trunk/pom.xml (added)
+++ geronimo/sandbox/build-support/testing/trunk/pom.xml Sat Jan 27 14:59:38 2007
@@ -0,0 +1,56 @@
+<?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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<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>testing</groupId>
+    <artifactId>testing</artifactId>
+    <name>testing</name>
+    <version>1-SNAPSHOT</version>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>compile</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <echo>FOO: ${foo}</echo>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
+

Propchange: geronimo/sandbox/build-support/testing/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/build-support/testing/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/build-support/testing/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/build-support/testing/trunk/testscript
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/testing/trunk/testscript?view=auto&rev=500662
==============================================================================
--- geronimo/sandbox/build-support/testing/trunk/testscript (added)
+++ geronimo/sandbox/build-support/testing/trunk/testscript Sat Jan 27 14:59:38 2007
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+echo "TESTING"
+

Propchange: geronimo/sandbox/build-support/testing/trunk/testscript
------------------------------------------------------------------------------
    svn:executable = *