aboutsummaryrefslogtreecommitdiff
path: root/test/site
diff options
context:
space:
mode:
Diffstat (limited to 'test/site')
-rw-r--r--test/site/pom.xml8
-rw-r--r--test/site/src/site/apt/devguide.apt8
-rw-r--r--test/site/src/site/apt/downloads.apt6
-rw-r--r--test/site/src/site/apt/examples.apt4
-rw-r--r--test/site/src/site/apt/userguide.apt2
5 files changed, 13 insertions, 15 deletions
diff --git a/test/site/pom.xml b/test/site/pom.xml
index 3c260990..699e2944 100644
--- a/test/site/pom.xml
+++ b/test/site/pom.xml
@@ -19,7 +19,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.cloudera.itest</groupId>
+ <groupId>org.apache.bigtop.itest</groupId>
<artifactId>itest-site</artifactId>
<version>1.0-SNAPSHOT</version>
@@ -43,11 +43,11 @@
</license>
</licenses>
<issueManagement>
- <system>github</system>
- <url>https://github.com/cloudera/iTest/issues</url>
+ <system>jira</system>
+ <url>https://issues.apache.org/jira/browse/BIGTOP</url>
</issueManagement>
<scm>
- <url>http://github.com/cloudera/iTest</url>
+ <url>https://svn.apache.org/repos/asf/incubator/bigtop/</url>
</scm>
<distributionManagement>
<site>
diff --git a/test/site/src/site/apt/devguide.apt b/test/site/src/site/apt/devguide.apt
index a9e3bb81..c35f843c 100644
--- a/test/site/src/site/apt/devguide.apt
+++ b/test/site/src/site/apt/devguide.apt
@@ -22,13 +22,11 @@ How to contribute to iTest
If you find this project interesting and want to contribute your time, ideas,
code, documentation writing skills, testing cycles - you are very welcome!
- Contributing is easy! Simply go to the {{{http://github.com/cloudera/iTest}project git repository}},
- fork it and go ahead! GitHub provides a nice collaboration feature called
- 'pull request' where one case easily offer new code to be included into
- mainstream code base upon successful code review and discussion.
+ Contributing is easy! Simply go to the {{{http://incubator.apache.org/bigtop/}project website}},
+ join it and go ahead!
If you find a problem with iTest, or have a feature request you can
- {{{https://github.com/cloudera/iTest/issues}open new issue}}
+ {{{https://issues.apache.org/jira/browse/BIGTOP}open new issue}}
So, jump on and code with us! It is fun!
diff --git a/test/site/src/site/apt/downloads.apt b/test/site/src/site/apt/downloads.apt
index 353f3dc1..9185adb8 100644
--- a/test/site/src/site/apt/downloads.apt
+++ b/test/site/src/site/apt/downloads.apt
@@ -28,7 +28,7 @@ repository. The repository is located at repository.cloudera.com
+--------------------------------------+
<dependency>
- <groupId>com.cloudera.itest</groupId>
+ <groupId>org.apache.bigtop.itest</groupId>
<artifactId>itest-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
@@ -40,12 +40,12 @@ repository. The repository is located at repository.cloudera.com
+--------------------------------------+
<dependency>
- <groupId>com.cloudera.itest</groupId>
+ <groupId>org.apache.bigtop.itest</groupId>
<artifactId>itest-common</artifactId>
<version>1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>
+--------------------------------------+
- Or you can clone iTest workspace from github.com/cloudera/iTest using {{{http://git-scm.com/}git}}
+ Or you can fetch iTest workspace from https://svn.apache.org/repos/asf/incubator/bigtop/
diff --git a/test/site/src/site/apt/examples.apt b/test/site/src/site/apt/examples.apt
index 2f88e691..d40849a6 100644
--- a/test/site/src/site/apt/examples.apt
+++ b/test/site/src/site/apt/examples.apt
@@ -85,7 +85,7 @@ mvn verify
* Putting it all together
- As you can see in the {{{https://github.com/cloudera/iTest/tree/master/examples}examples}}
+ As you can see in the {{{https://svn.apache.org/repos/asf/incubator/bigtop/trunk/test/suites/}suites}}
we are using Maven failsafe plugin to execute tests in the integration testing
phase of a maven project lifecycle.
@@ -97,7 +97,7 @@ mvn verify
ones from jars found in the classpath will be executed.
You can see this step being done in the toplevel
- {{{https://github.com/cloudera/iTest/blob/master/examples/pom.xml}pom.xml}}
+ {{{https://svn.apache.org/repos/asf/incubator/bigtop/trunk/test/suites/common/pom.xml}pom.xml}}
file in the configuration section of <<<org.codehaus.groovy.maven>>> plugin
iTest provides a convenient method of unpacking data files included
diff --git a/test/site/src/site/apt/userguide.apt b/test/site/src/site/apt/userguide.apt
index 3f2579a7..ed08ee9b 100644
--- a/test/site/src/site/apt/userguide.apt
+++ b/test/site/src/site/apt/userguide.apt
@@ -20,7 +20,7 @@ Develop with iTest
** Shell support
iTest implements transparent shell-outs from test written in Java and Groovy.
- This support is implemented in <<<com.cloudera.itest.shell>>> package.
+ This support is implemented in <<<org.apache.bigtop.itest.shell>>> package.
+------------------------+
...