gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright 2010 Google Inc. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 6 | # use this file except in compliance with the License. You may obtain a copy of |
| 7 | # the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | # License for the specific language governing permissions and limitations under |
| 15 | # the License. |
| 16 | |
| 17 | |
| 18 | # This script should be run from the trunk dir. |
amitmanjhi@google.com | 98b5297 | 2010-06-25 15:42:47 +0000 | [diff] [blame] | 19 | ant clean dist-dev |
gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 20 | |
| 21 | MAVEN_REPO=~/.m2/repository |
| 22 | |
amitmanjhi@google.com | a2d7312 | 2010-06-24 21:48:00 +0000 | [diff] [blame] | 23 | for i in dev user servlet |
gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 24 | do |
rjrjr@google.com | 4e8d28a | 2010-08-20 15:38:56 +0000 | [diff] [blame^] | 25 | mvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-${i} -Dversion=2.1-SNAPSHOT -Dpackaging=jar -Dfile=build/lib/gwt-${i}.jar -DgeneratePom=true |
gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 26 | done |
| 27 | touch /tmp/empty-fake-soyc-vis.jar |
rjrjr@google.com | 4e8d28a | 2010-08-20 15:38:56 +0000 | [diff] [blame^] | 28 | mvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-soyc-vis -Dversion=2.1-SNAPSHOT -Dpackaging=jar -DgeneratePom=true -Dfile=/tmp/empty-fake-soyc-vis.jar |
gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 29 | echo "installed the gwt libs in the maven repo" |