You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2012/09/11 20:15:19 UTC

svn commit: r1383501 - /incubator/flex/falcon/trunk/build.xml

Author: gordonsmith
Date: Tue Sep 11 18:15:18 2012
New Revision: 1383501

URL: http://svn.apache.org/viewvc?rev=1383501&view=rev
Log:
Falcon: Added a top-level Ant script for Falcon with a few key targets that delegate to the Ant script inside the 'compiler' project. Eventually it will also delegate to the Ant script inside the compiler.tests project when this exists.

Added:
    incubator/flex/falcon/trunk/build.xml   (with props)

Added: incubator/flex/falcon/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/build.xml?rev=1383501&view=auto
==============================================================================
--- incubator/flex/falcon/trunk/build.xml (added)
+++ incubator/flex/falcon/trunk/build.xml Tue Sep 11 18:15:18 2012
@@ -0,0 +1,36 @@
+<?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 name="falcon" default="main" basedir=".">
+
+    <target name="clean">
+        <ant dir="compiler" target="clean"/>
+    </target>
+
+    <target name="main">
+        <ant dir="compiler" target="main"/>
+    </target>
+
+    <target name="eclipse">
+        <ant dir="compiler" target="eclipse"/>
+    </target>
+
+</project>

Propchange: incubator/flex/falcon/trunk/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native