update the downloads page to make Spanshots point to 0.2-incubating

git-svn-id: https://svn.apache.org/repos/asf/incubator/wink/site/trunk@807097 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/site/pom.xml b/site/pom.xml
index bf9c2e2..00ecfd2 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -28,9 +28,10 @@
 		<version>6</version>
 	</parent>
 	<properties>
-		<downloadSnapshotName>Wink-0.1-incubating-SNAPSHOT</downloadSnapshotName>
-		<downloadSnapshotUrl>https://repository.apache.org/content/repositories/snapshots/org/apache/wink/apache-wink/0.1-incubating-SNAPSHOT</downloadSnapshotUrl>
-		<downloadSnapshotFile>apache-wink-0.1-incubating-SNAPSHOT</downloadSnapshotFile>
+		<snapshotVersion>0.2-incubating-SNAPSHOT</snapshotVersion>
+		<downloadSnapshotName>Wink-${snapshotVersion}</downloadSnapshotName>
+		<downloadSnapshotUrl>https://repository.apache.org/content/repositories/snapshots/org/apache/wink/apache-wink/${snapshotVersion}</downloadSnapshotUrl>
+		<downloadSnapshotFile>apache-wink-${snapshotVersion}</downloadSnapshotFile>
 	</properties>
 	<scm>
 		<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/wink/trunk</connection>
diff --git a/site/src/site/confluence/downloads.confluence.vm b/site/src/site/confluence/downloads.confluence.vm
index 3b4e64a..608c5e2 100644
--- a/site/src/site/confluence/downloads.confluence.vm
+++ b/site/src/site/confluence/downloads.confluence.vm
@@ -4,7 +4,37 @@
 		

 h2. Release

 

- There is no release yet. 

+ The release is already here! 

+ However due to a infrastructure problems we cannot copy it to a mirror.

+ Meanwhile, it's possible to download it using Maven.

+

+h3. Maven

+

+h4. Dependencies

+

+ Add the following dependencies to your Maven pom.xml to include the Apache Wink Client module and the Server module.

+

+h5. Client

+

+{code}

+<dependency>

+    <groupId>org.apache.wink</groupId>

+    <artifactId>wink-client</artifactId>

+    <version>0.1-incubating</version>

+</dependency>

+{code}

+

+h5. Server

+

+{code}

+<dependency>

+    <groupId>org.apache.wink</groupId>

+    <artifactId>wink-server</artifactId>

+    <version>0.1-incubating</version>

+</dependency>

+{code}

+

+

 

 h2. Latest Snapshots

 		

@@ -26,7 +56,7 @@
 <dependency>

     <groupId>org.apache.wink</groupId>

     <artifactId>wink-client</artifactId>

-    <version>0.1-incubating-SNAPSHOT</version>

+    <version>${snapshotVersion}</version>

 </dependency>

 {code}

 

@@ -36,7 +66,7 @@
 <dependency>

     <groupId>org.apache.wink</groupId>

     <artifactId>wink-server</artifactId>

-    <version>0.1-incubating-SNAPSHOT</version>

+    <version>${snapshotVersion}</version>

 </dependency>

 {code}