diff options
-rw-r--r-- | archetype/src/main/resources/archetype-resources/pom.xml | 2 | ||||
-rw-r--r-- | change_version.sh | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/archetype/src/main/resources/archetype-resources/pom.xml b/archetype/src/main/resources/archetype-resources/pom.xml index 9f3ea326..89d33fb8 100644 --- a/archetype/src/main/resources/archetype-resources/pom.xml +++ b/archetype/src/main/resources/archetype-resources/pom.xml @@ -12,7 +12,7 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> - <gQueryVersion>1.3.1</gQueryVersion> + <gQueryVersion>1.4.0-SNAPSHOT</gQueryVersion> <gwtversion>2.5.1</gwtversion> <gwtmaven>2.5.1</gwtmaven> </properties> diff --git a/change_version.sh b/change_version.sh index fa6f0bb7..a64af76d 100644 --- a/change_version.sh +++ b/change_version.sh @@ -7,3 +7,6 @@ do perl -pi -e "s;<version>$V</version>;<version>$1</version>;" $i echo $V $i done + +perl -pi -e "s;<gQueryVersion>$V</gQueryVersion>;<gQueryVersion>$1</gQueryVersion>;" \ + archetype/src/main/resources/archetype-resources/pom.xml |