Document change of SCM location

This commit is contained in:
Benedikt Ritter 2016-07-10 21:33:02 +02:00
parent 3c7ec1feba
commit 753dda04c8
2 changed files with 17 additions and 17 deletions

26
pom.xml
View File

@ -105,9 +105,9 @@ CSV files of various types.
</contributors>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/csv/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/csv/trunk</developerConnection>
<url>http://svn.apache.org/viewvc/commons/proper/csv/trunk</url>
<connection>scm:git:http://git-wip-us.apache.org/repos/asf/commons-csv.git</connection>
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/commons-csv.git</developerConnection>
<url>https://git-wip-us.apache.org/repos/asf?p=commons-csv.git</url>
</scm>
<issueManagement>
@ -157,7 +157,7 @@ CSV files of various types.
</configuration>
</plugin>
</plugins>
</pluginManagement>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
@ -385,12 +385,12 @@ CSV files of various types.
</plugins>
</build>
</profile>
<!-- Profile to build and run the benchmarks. Use 'mvn test -Pbenchmark', and add '-Dbenchmark=foo' to run only the foo benchmark -->
<profile>
<id>benchmark</id>
<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
@ -398,7 +398,7 @@ CSV files of various types.
<version>1.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
@ -412,14 +412,14 @@ CSV files of various types.
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.javacsv</groupId>
<artifactId>javacsv</artifactId>
<version>2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
@ -440,19 +440,19 @@ CSV files of various types.
<artifactId>csv</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
</dependencies>
<properties>
<skipTests>true</skipTests>
<benchmark>org.apache</benchmark>
</properties>
<build>
<plugins>
<!-- Enable the compilation of the benchmarks -->
@ -464,7 +464,7 @@ CSV files of various types.
</testIncludes>
</configuration>
</plugin>
<!-- Hook the benchmarks to the test phase -->
<plugin>
<groupId>org.codehaus.mojo</groupId>

View File

@ -55,8 +55,8 @@ The Javadoc API documents are available online:
<li><a href="archives/1.0/apidocs/index.html">Javadoc 1.0</a></li>
</ul>
<p>
The <a href="source-repository.html">subversion repository</a> can be
<a href="http://svn.apache.org/viewvc/commons/proper/csv/trunk/">browsed</a>.
The <a href="source-repository.html">git repository</a> can be
<a href="https://git-wip-us.apache.org/repos/asf?p=commons-csv.git">browsed</a>.
</p>
</section>
<!-- ================================================== -->
@ -88,12 +88,12 @@ For previous releases, see the <a href="http://archive.apache.org/dist/commons/c
&lt;/dependency&gt;</pre>
</p>
<p>
For other dependency access methods, see <a href="dependency-info.html">Dependency Information</a>
For other dependency access methods, see <a href="dependency-info.html">Dependency Information</a>
</p>
</section>
<section name="Building from sources">
<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>.
<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>.
You can build the component using Apache Maven using <code>mvn clean package</code>.
</p>
</section>