Author: brett Date: Tue Dec 6 01:40:05 2011 New Revision: 1210740 URL: http://svn.apache.org/viewvc?rev=1210740&view=rev Log: bootstrap file for mono
Added: incubator/npanday/trunk/bootstrap.sh (contents, props changed) - copied, changed from r1210483, incubator/npanday/trunk/bootstrap.bat Copied: incubator/npanday/trunk/bootstrap.sh (from r1210483, incubator/npanday/trunk/bootstrap.bat) URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/bootstrap.sh?p2=incubator/npanday/trunk/bootstrap.sh&p1=incubator/npanday/trunk/bootstrap.bat&r1=1210483&r2=1210740&rev=1210740&view=diff ============================================================================== --- incubator/npanday/trunk/bootstrap.bat (original) +++ incubator/npanday/trunk/bootstrap.sh Tue Dec 6 01:40:05 2011 @@ -1,50 +1,36 @@ -REM Start of LICENSE -GOTO LicenseComment -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. -:LicenseComment -REM Workaround for http://jira.codehaus.org/browse/MNG-1911 -REM The first time you build a new NPanday version, the compile-plugin has -REM to be installed into the repository already. - -@echo off -echo ################################################################### -echo Bootstrapping the NPanday Compile Plugin -echo ################################################################### -@echo on - -call mvn install -Dbootstrap --projects org.apache.npanday.plugins:maven-compile-plugin --also-make -IF %ERRORLEVEL% NEQ 0 GOTO Error - -@echo off -echo ################################################################### -echo SUCCESS! Now you should be able to build using 'mvn install' -echo ################################################################### -@echo on - -GOTO End - -:Error - -@echo off -echo ################################################################### -echo FAILED. Something went wrong. Consult the mailing list... -echo ################################################################### -pause -@echo on - -:End +#!/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. +# + +# Workaround for http://jira.codehaus.org/browse/MNG-1911 +# The first time you build a new NPanday version, the compile-plugin has +# to be installed into the repository already. + +set -e + +echo ################################################################### +echo Bootstrapping the NPanday Compile Plugin +echo ################################################################### + +mvn install -Dbootstrap --projects org.apache.npanday.plugins:maven-compile-plugin --also-make + +echo ################################################################### +echo SUCCESS! Now you should be able to build using 'mvn install' +echo ################################################################### + Propchange: incubator/npanday/trunk/bootstrap.sh ------------------------------------------------------------------------------ svn:executable = *