Author: niclas
Date: Tue Aug 3 00:17:52 2004
New Revision: 35622
Modified:
avalon/trunk/planet/facilities/http/blocks/server/build.xml
Log:
build file for server block
Modified: avalon/trunk/planet/facilities/http/blocks/server/build.xml
==============================================================================
--- avalon/trunk/planet/facilities/http/blocks/server/build.xml (original)
+++ avalon/trunk/planet/facilities/http/blocks/server/build.xml Tue Aug 3 00:17:52 2004
@@ -7,14 +7,31 @@
<import file="${project.system}/build/standard.xml"/>
<target name="build" depends="standard.build">
-
- <x:block name="default-server" embed="MAIN">
+ <x:block name="default-server">
+ <x:service type="org.apache.avalon.http.HttpService" source="httpserver"/>
<x:component name="socketlistener" class="org.apache.avalon.http.impl.SocketListener"
/>
+ <x:component name="httpserver" class="org.apache.avalon.http.impl.HttpServerImpl"
/>
+ </x:block>
+ </target>
+
+ <!--
+ <target name="build" depends="standard.build">
+ <x:block name="default-server">
+ <x:service type="org.apache.avalon.http.HttpService" source="httpserver"/>
<x:component name="ssllistener" class="org.apache.avalon.http.impl.JsseListener"
/>
- <x:component name="ajplistener" class="org.apache.avalon.http.impl.Ajp13Listener"
/>
<x:component name="httpserver" class="org.apache.avalon.http.impl.HttpServerImpl"
/>
</x:block>
+ </target>
+ -->
+ <!--
+ <target name="build" depends="standard.build">
+ <x:block name="default-server">
+ <x:service type="org.apache.avalon.http.HttpService" source="httpserver"/>
+ <x:component name="ajplistener" class="org.apache.avalon.http.impl.Ajp13Listener"
/>
+ <x:component name="httpserver" class="org.apache.avalon.http.impl.HttpServerImpl"
/>
+ </x:block>
</target>
+ -->
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org
|