Remove reference to SVN
Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/7a50aee2 Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/7a50aee2 Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/7a50aee2 Branch: refs/heads/master Commit: 7a50aee24cc4875844955675a4d7070d622ef085 Parents: 22eb736 Author: Andreas Gudian <agud...@apache.org> Authored: Tue Jun 10 21:08:55 2014 +0200 Committer: Andreas Gudian <agud...@apache.org> Committed: Tue Jun 10 21:08:55 2014 +0200 ---------------------------------------------------------------------- .../src/site/apt/developing.apt.vm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/7a50aee2/maven-surefire-plugin/src/site/apt/developing.apt.vm ---------------------------------------------------------------------- diff --git a/maven-surefire-plugin/src/site/apt/developing.apt.vm b/maven-surefire-plugin/src/site/apt/developing.apt.vm index dbc5f67..ef8103f 100644 --- a/maven-surefire-plugin/src/site/apt/developing.apt.vm +++ b/maven-surefire-plugin/src/site/apt/developing.apt.vm @@ -32,25 +32,24 @@ Developer Center * Multi-module Project - The plugin is built as part of a multi-module plugin. The generated - "project information" will suggest that you check out (e.g.) - {{http://svn.apache.org/repos/asf/maven/surefire/trunk/${project.artifactId}}}. - In fact, you need to check out (e.g.) - {{http://svn.apache.org/repos/asf/maven/surefire/trunk}} and - build from there. + The plugin is built as part of a multi-module plugin. You need to check out + the complete module and build from there: + ++---+ + git clone https://git-wip-us.apache.org/repos/asf/maven-surefire.git ++---+ * Making Test Cases for Demonstrating Problems When reporting an issue, it is immensely useful to create a small sample project that demonstrates the problem. Surefire already contains a large number of such projects, and they can be found at - {{https://svn.apache.org/repos/asf/maven/surefire/trunk/surefire-integration-tests/src/test/resources/}}. + {{surefire-integration-tests/src/test/resources/}}. Typically you can check out one of the pre-existing projects and run it like this: +---+ -svn co https://svn.apache.org/repos/asf/maven/surefire/trunk/surefire-integration-tests/src/test/resources/failsafe-buildfail -cd failsafe-buildfail -mvn -Dsurefire.version=2.12 verify + cd surefire-integration-tests/src/test/resources/failsafe-buildfail + mvn -Dsurefire.version=2.12 verify +---+ * Attaching a Debugger