This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "robust-http-client packaging".

The branch, upstream has been updated
       via  7667eb6eb64ddd6f9c4ad8b5d47a79e69d63bf79 (commit)
      from  d70d0dc4ec753423bd041902ecbe3fa78dd40b6f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 pom.xml                                            |   53 ++++++++++++++-----
 .../robust_http_client/RetryableHttpStream.java    |   23 +++++++++
 src/site/site.xml                                  |   19 +++++++
 3 files changed, 81 insertions(+), 14 deletions(-)

diff --git a/pom.xml b/pom.xml
index fd79e03..d547c9a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,26 +2,29 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jvnet.robust-http-client</groupId>
   <artifactId>robust-http-client</artifactId>
-  <packaging>jar</packaging>
-  <version>1.1</version>
+  <version>1.2</version>
   <name>Robust HTTP client library</name>
-  <url>http://maven.apache.org</url>
+  <description>InputStream that hides automatic download retry</description>
+  <url>http://${project.artifactId}.kohsuke.org/</url>
 
   <scm>
-    
<connection>scm:svn:https://svn.dev.java.net/svn/robust-http-client/tags/robust-http-client-1.1</connection>
-    
<developerConnection>scm:svn:https://svn.dev.java.net/svn/robust-http-client/tags/robust-http-client-1.1</developerConnection>
-    
<url>https://robust-http-client.dev.java.net/source/browse/robust-http-client/tags/robust-http-client-1.1</url>
+    
<connection>scm:git:g...@github.com/kohsuke/${project.artifactId}.git</connection>
+    
<developerConnection>scm:git:ssh://g...@github.com/kohsuke/${project.artifactId}.git</developerConnection>
+    <url>http://${project.artifactId}.kohsuke.org/</url>
   </scm>
 
   <distributionManagement>
     <repository>
-      <uniqueVersion>false</uniqueVersion>
-      <id>local-repository</id>
-      
<url>svn:https://svn.dev.java.net/svn/maven2-repository/trunk/repository/</url>
+      <id>maven.jenkins-ci.org</id>
+      <url>http://maven.jenkins-ci.org:8081/content/repositories/releases</url>
     </repository>
+    <snapshotRepository>
+      <id>maven.jenkins-ci.org</id>
+      
<url>http://maven.jenkins-ci.org:8081/content/repositories/snapshots</url>
+    </snapshotRepository>
     <site>
-      <id>local</id>
-      <url>svn:https://svn.dev.java.net/svn/robust-http-client/trunk/www/</url>
+      <id>github-pages</id>
+      <url>gitsite:g...@github.com/kohsuke/${project.artifactId}.git</url>
     </site>
   </distributionManagement>
 
@@ -42,13 +45,28 @@
           <downloadSources>true</downloadSources>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.0-beta-3</version>
+      </plugin>
     </plugins>
     
     <extensions>
       <extension>
-        <groupId>org.jvnet.wagon-svn</groupId>
-        <artifactId>wagon-svn</artifactId>
-        <version>1.9</version>
+        <groupId>org.apache.maven.scm</groupId>
+        <artifactId>maven-scm-provider-gitexe</artifactId>
+        <version>1.3</version>
+      </extension>
+      <extension>
+        <groupId>org.apache.maven.scm</groupId>
+        <artifactId>maven-scm-manager-plexus</artifactId>
+        <version>1.3</version>
+      </extension>
+      <extension>
+        <groupId>org.kathrynhuxtable.maven.wagon</groupId>
+        <artifactId>wagon-gitsite</artifactId>
+        <version>0.3.1</version>
       </extension>
     </extensions>
   </build>
@@ -75,4 +93,11 @@
         <distribution>repo</distribution>
     </license>
   </licenses>
+
+  <repositories>
+    <repository>
+      <id>m.g.o-public</id>
+      <url>http://maven.glassfish.org/content/groups/public/</url>
+    </repository>
+  </repositories>
 </project>
diff --git 
a/src/main/java/org/jvnet/robust_http_client/RetryableHttpStream.java 
b/src/main/java/org/jvnet/robust_http_client/RetryableHttpStream.java
index 3336d3d..53381a0 100644
--- a/src/main/java/org/jvnet/robust_http_client/RetryableHttpStream.java
+++ b/src/main/java/org/jvnet/robust_http_client/RetryableHttpStream.java
@@ -1,3 +1,26 @@
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2009, Sun Microsystems, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to 
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
 package org.jvnet.robust_http_client;
 
 import java.io.IOException;
diff --git a/src/site/site.xml b/src/site/site.xml
new file mode 100644
index 0000000..a938ef1
--- /dev/null
+++ b/src/site/site.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="Robust HTTP client library">
+  <skin>
+    <groupId>org.kohsuke</groupId>
+    <artifactId>maven-skin</artifactId>
+    <version>1.1</version>
+  </skin>
+
+  <body>
+    <menu name="Robust HTTP client library">
+      <item name="Overview" href="index.html"/>
+
+      <!--item name="Mailing lists" href="servlets/ProjectMailingListList"/-->
+      <item name="Source code" 
href="https://github.com/kohsuke/robust-http-client"/>
+      <item name="Issues" 
href="http://java.net/jira/browse/ROBUST_HTTP_CLIENT"/>
+    </menu>
+    ${reports}
+  </body>
+</project>


hooks/post-receive
-- 
robust-http-client packaging

_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to