Updated the script to install the artifacts to the correct maven location

Patch by: amitmanjhi
Review by: rdayal


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9177 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/tools/scripts/maven_script.sh b/tools/scripts/maven_script.sh
index d219bed..e538ded 100755
--- a/tools/scripts/maven_script.sh
+++ b/tools/scripts/maven_script.sh
@@ -22,8 +22,8 @@
 
 for i in dev user servlet
 do
-   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
+   mvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-${i} -Dversion=2.1.0 -Dpackaging=jar -Dfile=build/lib/gwt-${i}.jar -DgeneratePom=true
 done 
 touch /tmp/empty-fake-soyc-vis.jar
-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
+mvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-soyc-vis -Dversion=2.1.0 -Dpackaging=jar -DgeneratePom=true -Dfile=/tmp/empty-fake-soyc-vis.jar
 echo "installed the gwt libs in the maven repo"