You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by mi...@apache.org on 2005/01/21 12:04:54 UTC

svn commit: r125916 - /lenya/branches/BRANCH_1_2_X/src/targets/message-build.xml

Author: michi
Date: Fri Jan 21 03:04:51 2005
New Revision: 125916

URL: http://svn.apache.org/viewcvs?view=rev&rev=125916
Log:
build messages added
Added:
   lenya/branches/BRANCH_1_2_X/src/targets/message-build.xml

Added: lenya/branches/BRANCH_1_2_X/src/targets/message-build.xml
Url: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/message-build.xml?view=auto&rev=125916
==============================================================================
--- (empty file)
+++ lenya/branches/BRANCH_1_2_X/src/targets/message-build.xml	Fri Jan 21 03:04:51 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed 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.
+-->
+
+<!-- $Id: init-build.xml 125911 2005-01-21 09:55:12Z michi $ -->
+
+<project name="message">
+
+  <description>
+    Message targets
+  </description>
+
+  <target name="successfully-built-message-jetty" if="servlet.engine.jetty">
+    <echo message="*****************************************************************"/>
+    <echo message="*"/>
+    <echo message="* You have successfully built ${Name} ${version} based on"/>
+    <echo message="*"/>
+    <echo message="*      Cocoon (${cocoon.src.dir})"/>
+    <echo message="*"/>
+    <echo message="* Start using ${Name} by starting Jetty"/>
+    <echo message="*      Linux/UNIX: ./lenya.sh servlet"/>
+    <echo message="*      Windows:    lenya.bat servlet"/>
+    <echo message="*"/>
+    <echo message="* and browse to "/>
+    <echo message="*      http://127.0.0.1:8888"/>
+    <echo message="*"/>
+    <echo message="* Thanks for using ${Name}"/>
+    <echo message="*"/>
+    <echo message="*****************************************************************"/>
+  </target>
+
+  <target name="successfully-built-message-tomcat" if="servlet.engine.tomcat">
+    <echo message="*****************************************************************"/>
+    <echo message="*"/>
+    <echo message="* You have successfully built ${Name} ${version} based on"/>
+    <echo message="*"/>
+    <echo message="*      Cocoon (${cocoon.src.dir})"/>
+    <echo message="*"/>
+    <echo message="* Start using ${Name} by starting Tomcat"/>
+    <echo message="*      Linux/UNIX: TOMCAT/bin/startup.sh"/>
+    <echo message="*"/>
+    <echo message="* and browse to "/>
+    <echo message="*      http://127.0.0.1:8080/lenya/"/>
+    <echo message="*"/>
+    <echo message="* Thanks for using ${Name}"/>
+    <echo message="*"/>
+    <echo message="*****************************************************************"/>
+  </target>
+
+</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org