JBoss Native SVN: r3272 - trunk/build/daemon.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-04-30 09:41:02 -0400 (Wed, 30 Apr 2014)
New Revision: 3272
Added:
trunk/build/daemon/buildTC8.sh
Log:
Add Tomcat8 script.
Added: trunk/build/daemon/buildTC8.sh
===================================================================
--- trunk/build/daemon/buildTC8.sh (rev 0)
+++ trunk/build/daemon/buildTC8.sh 2014-04-30 13:41:02 UTC (rev 3272)
@@ -0,0 +1,53 @@
+#!/bin/sh
+# Copyright(c) 2010 Red Hat Middleware, LLC,
+# and individual contributors as indicated by the @authors tag.
+# See the copyright.txt in the distribution for a
+# full listing of individual contributors.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library in the file COPYING.LIB;
+# if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+#
+# @author Jean-Frederic Clere
+#
+echo ""
+echo "Running `basename $0` $LastChangedDate: 2008-07-23 16:17:15 +0200 (Wed, 23 Jul 2008) $"
+echo ""
+echo "Started : `date`"
+echo "Params : $@"
+echo ""
+
+build_ssl=true
+
+while [ "x" != "x$1" ]
+do
+ case $1 in
+ -env)
+ echo "Dumping environment"
+ env
+ echo ""
+ ;;
+ -no-ssl)
+ build_ssl=false
+ ;;
+ esac
+ shift
+done
+
+(cd ../unix
+ if $build_ssl; then
+ ./build.sh TC8 -ssl -cache -test
+ fi
+ ./build.sh TC8 -cache -test
+)
Property changes on: trunk/build/daemon/buildTC8.sh
___________________________________________________________________
Added: svn:executable
+ *