update default versions
diff --git a/jetty.bundles.f.source/feature.xml b/jetty.bundles.f.source/feature.xml
index 89cd4b4..b11e631 100644
--- a/jetty.bundles.f.source/feature.xml
+++ b/jetty.bundles.f.source/feature.xml
@@ -2,7 +2,7 @@
<feature
id="org.eclipse.jetty.bundles.f.source"
label="%featureName"
- version="8.0.1.qualifier"
+ version="8.0.2-SNAPSHOT.qualifier"
provider-name="%providerName">
<description url="%descriptionURL">
diff --git a/jetty.bundles.f.source/pom.xml b/jetty.bundles.f.source/pom.xml
index 4616bf1..385e4d8 100644
--- a/jetty.bundles.f.source/pom.xml
+++ b/jetty.bundles.f.source/pom.xml
@@ -20,7 +20,7 @@
<parent>
<groupId>org.eclipse.jetty.p2repo</groupId>
<artifactId>jetty-p2repo</artifactId>
- <version>8.0.1.SNAPSHOT</version>
+ <version>8.0.2-SNAPSHOT.SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.jetty.bundles.f.source</artifactId>
<packaging>eclipse-feature</packaging>
diff --git a/jetty.bundles.f/feature.xml b/jetty.bundles.f/feature.xml
index b950bb1..f1ca104 100644
--- a/jetty.bundles.f/feature.xml
+++ b/jetty.bundles.f/feature.xml
@@ -2,7 +2,7 @@
<feature
id="org.eclipse.jetty.bundles.f"
label="%featureName"
- version="8.0.1.qualifier"
+ version="8.0.2-SNAPSHOT.qualifier"
provider-name="%providerName">
<description url="%descriptionURL">
diff --git a/jetty.bundles.f/pom.xml b/jetty.bundles.f/pom.xml
index 82ca5f0..39d74f4 100644
--- a/jetty.bundles.f/pom.xml
+++ b/jetty.bundles.f/pom.xml
@@ -20,7 +20,7 @@
<parent>
<groupId>org.eclipse.jetty.p2repo</groupId>
<artifactId>jetty-p2repo</artifactId>
- <version>8.0.1.SNAPSHOT</version>
+ <version>8.0.2-SNAPSHOT.SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.jetty.bundles.f</artifactId>
<packaging>eclipse-feature</packaging>
diff --git a/jetty.bundles.repo/pom.xml b/jetty.bundles.repo/pom.xml
index 6ae4c42..ee99bde 100644
--- a/jetty.bundles.repo/pom.xml
+++ b/jetty.bundles.repo/pom.xml
@@ -20,7 +20,7 @@
<parent>
<groupId>org.eclipse.jetty.p2repo</groupId>
<artifactId>jetty-p2repo</artifactId>
- <version>8.0.1.SNAPSHOT</version>
+ <version>8.0.2-SNAPSHOT.SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.jetty.bundles.repo</artifactId>
<!--packaging>eclipse-repository</packaging-->
diff --git a/jetty.bundles.repo/site.xml b/jetty.bundles.repo/site.xml
index ca62393..4931b35 100644
--- a/jetty.bundles.repo/site.xml
+++ b/jetty.bundles.repo/site.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<site name="Jetty Bundles Repository">
- <feature url="org.eclipse.jetty.bundles.f_8.0.1.qualifier" id="org.eclipse.jetty.bundles.f" version="8.0.1.qualifier">
+ <feature url="org.eclipse.jetty.bundles.f_8.0.2-SNAPSHOT.qualifier" id="org.eclipse.jetty.bundles.f" version="8.0.2-SNAPSHOT.qualifier">
</feature>
- <feature url="org.eclipse.jetty.bundles.f.source_8.0.1.qualifier" id="org.eclipse.jetty.bundles.f.source" version="8.0.1.qualifier">
+ <feature url="org.eclipse.jetty.bundles.f.source_8.0.2-SNAPSHOT.qualifier" id="org.eclipse.jetty.bundles.f.source" version="8.0.2-SNAPSHOT.qualifier">
</feature>
</site>
diff --git a/pom.xml b/pom.xml
index 542548b..4e0a843 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty.p2repo</groupId>
<artifactId>jetty-p2repo</artifactId>
- <version>8.0.1.SNAPSHOT</version>
+ <version>8.0.2-SNAPSHOT.SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
@@ -20,7 +20,7 @@
<tycho-version>0.12.0</tycho-version>
- <jetty-version>8.0.1-SNAPSHOT</jetty-version>
+ <jetty-version>8.0.2-SNAPSHOT-SNAPSHOT</jetty-version>
<p2-install-folder-name>development</p2-install-folder-name>
<signing-plugin-version>1.0.5</signing-plugin-version>
diff --git a/set-version.sh b/set-version.sh
index 712d207..de285a3 100755
--- a/set-version.sh
+++ b/set-version.sh
@@ -1,9 +1,11 @@
-#!/bin/sh
+#!/bin/sh -x
# replace in all files the OLD_VERSION by the NEW_VERSION
# run and tested on linux.
# no need for windows support here although any community
# is always welcome to contibute such thing
+# awk = gawk v 3.1.7 or higher
+
#Make sure the current dir is the one of the script.
thisdir=`dirname $0`;
cd $thisdir