You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by fa...@apache.org on 2004/06/17 20:32:52 UTC

svn commit: rev 21386 - in avalon/trunk: . central/system/build

Author: farra
Date: Thu Jun 17 11:32:50 2004
New Revision: 21386

Added:
   avalon/trunk/README.txt
Modified:
   avalon/trunk/build.properties
   avalon/trunk/build.xml
   avalon/trunk/central/system/build/reactor.xml
Log:
added README.txt and allowed for http proxy in reactor.xml

Added: avalon/trunk/README.txt
==============================================================================
--- (empty file)
+++ avalon/trunk/README.txt	Thu Jun 17 11:32:50 2004
@@ -0,0 +1,65 @@
+=======================================================================
+            __
+           /  \    Apache
+          /    \__________________________________
+         /  /\  \  \/  /    \ |  |  /   \|   \|  |
+        /  /  \  \    /  /\  \|  |_|  O  |  \ \  |
+       /__/    \__\__/__/  \__\_____\__ /|__|\___|
+
+=======================================================================
+
+
+=======================================================================
+summary:   Apache Avalon provides a complete platform for component
+	   programming including a core framework, utilities, tools,
+	   components, and a container written in the Java language.
+publisher: Apache Software Foundation
+website:   http://avalon.apache.org/
+license:   Please see the LICENSE.txt file
+=======================================================================
+
+This is the main cvs module for the Apache Avalon project. It is
+organised into several subdirectories containing several subprojects.
+See the documentation and other resources inside those subdirectories
+for more information.
+
+
+More documentation?
+===================
+Most of our documentation is stored in SVN only in xml format. The HTML-
+formatted pages that are generated from those xml files are available at
+our website at
+
+    http://avalon.apache.org/
+
+
+Building from source?
+=====================
+Avalon uses an Apache Ant based build system dubbed 'magic'.  To
+build from source, download an install Ant 1.6.1 or later, then
+run:
+
+   ant setup               <-- only needed once to bootstrap magic
+   ant                     <-- builds entire Avalon platform
+
+
+What is the repository layout?
+==============================
+A brief explanation of the source respository structure.  For more
+info, see each subproject's own README documentation:
+
+   central
+   discovery
+   planet
+   runtime
+   studio
+   tools
+
+     
+
+
+
+Where did the Avalon-Framework subproject go?
+=============================================
+Don't worry, it didn't move very far. The framework sources have been
+relocated to the framework subdirectory.

Modified: avalon/trunk/build.properties
==============================================================================
--- avalon/trunk/build.properties	(original)
+++ avalon/trunk/build.properties	Thu Jun 17 11:32:50 2004
@@ -1 +1,3 @@
 project.home = central/system
+project.proxy.host = 43.142.35.52
+project.proxy.port = 80
\ No newline at end of file

Modified: avalon/trunk/build.xml
==============================================================================
--- avalon/trunk/build.xml	(original)
+++ avalon/trunk/build.xml	Thu Jun 17 11:32:50 2004
@@ -2,7 +2,8 @@
 
 <project name="runtime" default="dist" basedir="." xmlns:x="antlib:org.apache.avalon.tools">
 
-  <property file="build.properties"/>
+  <property file="${basedir}/user.properties"/>
+  <property file="${basedir}/build.properties"/>
   <property name="system.dir" value="${basedir}/central/system"/>
   <property name="reactor.path" value="${system.dir}/build/reactor.xml"/>
 
@@ -12,6 +13,7 @@
 
   <target name="init">
     <ant inheritall="false" dir="${system.dir}/setup" antfile="integrity.xml"/>
+    <ant dir="." antfile="${reactor.path}" target="init"/>
   </target>
 
   <target name="clean" depends="init">

Modified: avalon/trunk/central/system/build/reactor.xml
==============================================================================
--- avalon/trunk/central/system/build/reactor.xml	(original)
+++ avalon/trunk/central/system/build/reactor.xml	Thu Jun 17 11:32:50 2004
@@ -4,8 +4,17 @@
   <x:home/>
 
   <target name="init">
+   <!--
+     this wasn't being called.  why?
     <x:home/>
     <x:reactor target="init"/>
+   -->
+
+    <setproxy proxyhost="${project.proxy.host}"
+              proxyport="${project.proxy.port}"
+	      proxyuser="${project.proxy.user}"
+	      proxypassword="${project.proxy.password}"/>
+
   </target>
 
   <target name="clean">

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org