You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ws...@apache.org on 2009/03/09 20:05:28 UTC

svn commit: r751792 - in /continuum/sandbox/examples/bad-scm: ./ pom.xml

Author: wsmoak
Date: Mon Mar  9 19:05:27 2009
New Revision: 751792

URL: http://svn.apache.org/viewvc?rev=751792&view=rev
Log:
Add an example with a bad scm url to test transient state notifications.  This simulates svn being down or unreachable.

Added:
    continuum/sandbox/examples/bad-scm/
      - copied from r750607, continuum/sandbox/examples/snapshot-parent/
Modified:
    continuum/sandbox/examples/bad-scm/pom.xml

Modified: continuum/sandbox/examples/bad-scm/pom.xml
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/bad-scm/pom.xml?rev=751792&r1=750607&r2=751792&view=diff
==============================================================================
--- continuum/sandbox/examples/bad-scm/pom.xml (original)
+++ continuum/sandbox/examples/bad-scm/pom.xml Mon Mar  9 19:05:27 2009
@@ -2,23 +2,17 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <parent>
-    <groupId>org.apache.continuum</groupId>
-    <artifactId>continuum-parent</artifactId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-
   <groupId>org.apache.continuum.examples</groupId>
-  <artifactId>snapshot-parent</artifactId>
+  <artifactId>bad-scm</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>snapshot-parent</name>
+  <name>bad-scm</name>
   <url>http://maven.apache.org</url>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/continuum/sandbox/examples/snapshot-parent</connection>
-    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/continuum/sandbox/examples/snapshot-parent</developerConnection>
-    <url>http://svn.apache.org/viewvc/continuum/sandbox/examples/snapshot-parent</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/continuum/intentionally/wrong/scm/url</connection>
+    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/intentionally/wrong/scm/url</developerConnection>
+    <url>http://svn.apache.org/viewvc/continuum/sandbox/examples</url>
   </scm>
 
   <dependencies>
@@ -30,11 +24,4 @@
     </dependency>
   </dependencies>
 
-
-  <repositories>
-    <repository>
-      <id>apache.snapshots</id>
-      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
-    </repository>
-  </repositories>
 </project>