You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2022/08/01 18:59:31 UTC

[royale-website] branch asf-site updated: remove unnecessary file

This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/royale-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new b8ac6243 remove unnecessary file
b8ac6243 is described below

commit b8ac624310843793e4ae960e3b2318f9eaa82524
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Mon Aug 1 11:58:17 2022 -0700

    remove unnecessary file
---
 build.xml | 45 ---------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/build.xml b/build.xml
deleted file mode 100644
index 94b4dbe6..00000000
--- a/build.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?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="asdoc" default="main" basedir=".">
-
-    <property file="${basedir}/../env.properties"/>
-    <property environment="env"/>
-    <property file="${basedir}/../local.properties"/>
-    <property file="${basedir}/../build.properties"/>
-    
-    <target name="clean" description="Cleans the build output but leaves any downloaded JARs.">
-        <delete dir="asdoc" />
-        <delete dir="temp" />
-    </target>
-    
-    <target name="main" description="Build everything">
-        <mkdir dir="temp" />
-        <mkdir dir="asdoc" />
-        <get src="http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/Royale_ASDoc_Example/lastSuccessfulBuild/artifact/examples/royale/ASDoc/bin/js-debug/*zip*/js-debug.zip"
-            dest="${basedir}/temp" />
-        <unzip src="${basedir}/temp/js-debug.zip" dest="${basedir}/asdoc">
-            <cutdirsmapper dirs="1"/>
-        </unzip>
-        <delete dir="temp" />
-    </target>
-
-</project>