Karl Pauls | d140dd9 | 2006-11-02 22:22:49 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 19 | <project default="all"> |
| 20 | <target name="clean"> |
| 21 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 22 | <arg line="-Dpackaging=bundle clean" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 23 | </exec> |
| 24 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 25 | <arg line="-Dpackaging=osgi-bundle clean" /> |
| 26 | </exec> |
| 27 | <exec executable="mvn" failonerror="true"> |
| 28 | <arg line="-Dpackaging=ipojo-bundle clean" /> |
| 29 | </exec> |
| 30 | <exec executable="mvn" failonerror="true"> |
| 31 | <arg line="-Dpackaging=osgi-bundle-mosgi clean" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 32 | </exec> |
| 33 | </target> |
| 34 | <target name="install"> |
| 35 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 36 | <arg line="-Dpackaging=bundle install" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 37 | </exec> |
| 38 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 39 | <arg line="-Dpackaging=osgi-bundle install" /> |
| 40 | </exec> |
| 41 | <exec executable="mvn" failonerror="true"> |
| 42 | <arg line="-Dpackaging=ipojo-bundle install" /> |
| 43 | </exec> |
| 44 | <exec executable="mvn" failonerror="true"> |
| 45 | <arg line="-Dpackaging=osgi-bundle-mosgi install" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 46 | </exec> |
| 47 | </target> |
| 48 | <target name="all"> |
| 49 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 50 | <arg line="-Dpackaging=bundle clean install" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 51 | </exec> |
| 52 | <exec executable="mvn" failonerror="true"> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 53 | <arg line="-Dpackaging=osgi-bundle clean install" /> |
| 54 | </exec> |
| 55 | <exec executable="mvn" failonerror="true"> |
| 56 | <arg line="-Dpackaging=ipojo-bundle clean install" /> |
| 57 | </exec> |
| 58 | <exec executable="mvn" failonerror="true"> |
| 59 | <arg line="-Dpackaging=osgi-bundle-mosgi clean install" /> |
Richard S. Hall | c2312e4 | 2006-11-02 21:47:20 +0000 | [diff] [blame] | 60 | </exec> |
| 61 | </target> |
| 62 | </project> |