You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by tw...@apache.org on 2007/01/12 16:50:53 UTC

svn commit: r495616 - in /incubator/uima/uimaj/trunk/uimaj-distr/src/main/build: extractAndBuild.bat extractAndBuild.sh

Author: twgoetz
Date: Fri Jan 12 07:50:52 2007
New Revision: 495616

URL: http://svn.apache.org/viewvc?view=rev&rev=495616
Log:
Adding build scripts.

Added:
    incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.bat
    incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.sh

Added: incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.bat
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.bat?view=auto&rev=495616
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.bat (added)
+++ incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.bat Fri Jan 12 07:50:52 2007
@@ -0,0 +1,27 @@
+@echo off
+
+REM   Licensed to the Apache Software Foundation (ASF) under one
+REM   or more contributor license agreements.  See the NOTICE file
+REM   distributed with this work for additional information
+REM   regarding copyright ownership.  The ASF licenses this file
+REM   to you under the Apache License, Version 2.0 (the
+REM   "License"); you may not use this file except in compliance
+REM   with the License.  You may obtain a copy of the License at
+REM
+REM    http://www.apache.org/licenses/LICENSE-2.0
+REM
+REM   Unless required by applicable law or agreed to in writing,
+REM   software distributed under the License is distributed on an
+REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+REM   KIND, either express or implied.  See the License for the
+REM   specific language governing permissions and limitations
+REM   under the License.
+
+@echo on
+
+svn checkout http://svn.apache.org/repos/asf/incubator/uima/uimaj/trunk
+cd trunk\uimaj
+call mvn -Dmaven.test.skip=true  -Duima.build.date="%date% %time%" install
+cd ..
+cd uimaj-distr
+call mvn assembly:assembly

Added: incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.sh
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.sh?view=auto&rev=495616
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.sh (added)
+++ incubator/uima/uimaj/trunk/uimaj-distr/src/main/build/extractAndBuild.sh Fri Jan 12 07:50:52 2007
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+#   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.
+
+svn checkout http://svn.apache.org/repos/asf/incubator/uima/uimaj/trunk
+cd trunk/uimaj
+mvn -Dmaven.test.skip=true  -Duima.build.date="`date`" install
+cd ..
+cd uimaj-distr
+mvn assembly:assembly