Skip to content

Commit 753dda0

Browse files
committed
Document change of SCM location
1 parent 3c7ec1f commit 753dda0

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ CSV files of various types.
105105
</contributors>
106106

107107
<scm>
108-
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/csv/trunk</connection>
109-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/csv/trunk</developerConnection>
110-
<url>http://svn.apache.org/viewvc/commons/proper/csv/trunk</url>
108+
<connection>scm:git:http://git-wip-us.apache.org/repos/asf/commons-csv.git</connection>
109+
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/commons-csv.git</developerConnection>
110+
<url>https://git-wip-us.apache.org/repos/asf?p=commons-csv.git</url>
111111
</scm>
112112

113113
<issueManagement>
@@ -157,7 +157,7 @@ CSV files of various types.
157157
</configuration>
158158
</plugin>
159159
</plugins>
160-
</pluginManagement>
160+
</pluginManagement>
161161
<plugins>
162162
<plugin>
163163
<artifactId>maven-compiler-plugin</artifactId>
@@ -385,20 +385,20 @@ CSV files of various types.
385385
</plugins>
386386
</build>
387387
</profile>
388-
388+
389389

390390
<!-- Profile to build and run the benchmarks. Use 'mvn test -Pbenchmark', and add '-Dbenchmark=foo' to run only the foo benchmark -->
391391
<profile>
392392
<id>benchmark</id>
393-
393+
394394
<dependencies>
395395
<dependency>
396396
<groupId>org.openjdk.jmh</groupId>
397397
<artifactId>jmh-core</artifactId>
398398
<version>1.5.2</version>
399399
<scope>test</scope>
400400
</dependency>
401-
401+
402402
<dependency>
403403
<groupId>org.openjdk.jmh</groupId>
404404
<artifactId>jmh-generator-annprocess</artifactId>
@@ -412,14 +412,14 @@ CSV files of various types.
412412
<version>1.0</version>
413413
<scope>test</scope>
414414
</dependency>
415-
415+
416416
<dependency>
417417
<groupId>net.sourceforge.javacsv</groupId>
418418
<artifactId>javacsv</artifactId>
419419
<version>2.0</version>
420420
<scope>test</scope>
421421
</dependency>
422-
422+
423423
<dependency>
424424
<groupId>com.opencsv</groupId>
425425
<artifactId>opencsv</artifactId>
@@ -440,19 +440,19 @@ CSV files of various types.
440440
<artifactId>csv</artifactId>
441441
<version>1.0</version>
442442
</dependency>
443-
443+
444444
<dependency>
445445
<groupId>org.apache.commons</groupId>
446446
<artifactId>commons-lang3</artifactId>
447447
<version>3.4</version>
448448
</dependency>
449449
</dependencies>
450-
450+
451451
<properties>
452452
<skipTests>true</skipTests>
453453
<benchmark>org.apache</benchmark>
454454
</properties>
455-
455+
456456
<build>
457457
<plugins>
458458
<!-- Enable the compilation of the benchmarks -->
@@ -464,7 +464,7 @@ CSV files of various types.
464464
</testIncludes>
465465
</configuration>
466466
</plugin>
467-
467+
468468
<!-- Hook the benchmarks to the test phase -->
469469
<plugin>
470470
<groupId>org.codehaus.mojo</groupId>

src/site/xdoc/index.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ The Javadoc API documents are available online:
5555
<li><a href="archives/1.0/apidocs/index.html">Javadoc 1.0</a></li>
5656
</ul>
5757
<p>
58-
The <a href="source-repository.html">subversion repository</a> can be
59-
<a href="http://svn.apache.org/viewvc/commons/proper/csv/trunk/">browsed</a>.
58+
The <a href="source-repository.html">git repository</a> can be
59+
<a href="https://git-wip-us.apache.org/repos/asf?p=commons-csv.git">browsed</a>.
6060
</p>
6161
</section>
6262
<!-- ================================================== -->
@@ -88,12 +88,12 @@ For previous releases, see the <a href="http://archive.apache.org/dist/commons/c
8888
&lt;/dependency&gt;</pre>
8989
</p>
9090
<p>
91-
For other dependency access methods, see <a href="dependency-info.html">Dependency Information</a>
91+
For other dependency access methods, see <a href="dependency-info.html">Dependency Information</a>
9292
</p>
9393
</section>
9494

9595
<section name="Building from sources">
96-
<p>The latest code can be checked out from our Subversion repository at <a href="http://svn.apache.org/repos/asf/commons/proper/csv/trunk/">http://svn.apache.org/repos/asf/commons/proper/csv/trunk/</a>.
96+
<p>The latest code can be checked out from our git repository at <a href="https://git-wip-us.apache.org/repos/asf/commons-csv.git">https://git-wip-us.apache.org/repos/asf/commons-csv.git</a>.
9797
You can build the component using Apache Maven using <code>mvn clean package</code>.
9898
</p>
9999
</section>

0 commit comments

Comments
 (0)