This is an automated email from the ASF dual-hosted git repository.
gk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/turbine-site.git
The following commit(s) were added to refs/heads/master by this push:
new be09096 Update scm change to git in doap and site
be09096 is described below
commit be090962ef642da2ce8d889020e886f12bb59276
Author: Georg Kallidis <[email protected]>
AuthorDate: Fri Oct 22 13:33:09 2021 +0200
Update scm change to git in doap and site
---
doap/doap_Turbine.rdf | 5 +++++
xdocs/common/documentation.xml | 6 +++---
xdocs/download.xml | 17 ++++++++++-------
3 files changed, 18 insertions(+), 10 deletions(-)
diff --git a/doap/doap_Turbine.rdf b/doap/doap_Turbine.rdf
index f80da3e..1cd467b 100644
--- a/doap/doap_Turbine.rdf
+++ b/doap/doap_Turbine.rdf
@@ -81,6 +81,11 @@ Turbine is developed in an open, participatory environment
and released under th
<location
rdf:resource="http://svn.apache.org/repos/asf/turbine/core/trunk/"/>
<browse
rdf:resource="http://svn.apache.org/viewvc/turbine/core/trunk/"/>
</SVNRepository>
+ <GitRepository>
+ <location
rdf:resource="https://gitbox.apache.org/repos/asf/turbine-core.git"/>
+ <browse
rdf:resource="https://gitbox.apache.org/repos/asf/turbine-core.git"/>
+ </GitRepository>
+
</repository>
<maintainer>
<foaf:Person>
diff --git a/xdocs/common/documentation.xml b/xdocs/common/documentation.xml
index 9f84303..e95f5c4 100644
--- a/xdocs/common/documentation.xml
+++ b/xdocs/common/documentation.xml
@@ -136,11 +136,11 @@
<li>
<p>
<strong>Get The Source:</strong>
- Check out the latest source from the Turbine subversion module. You
can learn
+ Check out the latest source from the Turbine GIT module. You can
learn
about the Turbine repositories on the <a
href="../download.html">download page</a>.
The Turbine documentation resides in the turbine-site tree:
</p>
- <source><![CDATA[svn checkout
http://svn.apache.org/repos/asf/turbine/site]]></source>
+ <source><![CDATA[sgit clone
https://github.com/apache/turbine-site]]></source>
</li>
<li>
<p>
@@ -172,7 +172,7 @@ Total time: 20 seconds]]></source>
<li>
<strong>Make A Patch:</strong>
- <source><![CDATA[svn diff > name_of_patch.patch]]></source>
+ <source><![CDATA[git diff > name_of_patch.patch]]></source>
</li>
<li>
diff --git a/xdocs/download.xml b/xdocs/download.xml
index 5ff146a..d9303a5 100644
--- a/xdocs/download.xml
+++ b/xdocs/download.xml
@@ -30,10 +30,9 @@
<p>
The best way to get started with Turbine is to use the
Maven Archetypes, find it on <a
href="https://github.com/apache/turbine-archetypes" title="Turbine Maven
Archetype on GitHub">GitHub</a>.
- You might interested in the <a
href="https://github.com/apache/turbine-archetypes/tree/docker">Docker branch
(in development)</a> as well.
+ You might interested to use the Docker mode, read more about it the <a
href="https://github.com/apache/turbine-archetypes/blob/master/src/main/resources/archetype-resources/docs/DOCKER-README.md">here</a>
as well.
See also the <a
href="https://blogs.apache.org/turbine/entry/maven_archetypes_for_apache_turbine">blog
post</a>
- in the <a href="https://blogs.apache.org/turbine/">Turbine Blog</a> for
- usage information.
+ in the <a href="https://blogs.apache.org/turbine/">Turbine Blog</a> for
more usage information.
</p>
</section>
@@ -73,20 +72,24 @@
<section name="Getting The Development Source From Subversion">
<p>
- You can check out the latest source from the Turbine Subversion repository.
+ You can check out the latest source from the Turbine GIT repository.
Information on connecting to the ASF Subversion repositories can be found
on the
- <a href="http://www.apache.org/dev/version-control.html">version control
page</a>.
+ <a href="https://infra.apache.org/version-control.html">version control
page</a>.
More specific details can be found on the <em>Source Repository</em> page,
within <em>Project Reports</em> under <em>Project Documentation</em>,
of each Turbine sub-project.
</p>
- <source><![CDATA[svn checkout
http://svn.apache.org/repos/asf/turbine/core/trunk/]]></source>
+ <source><![CDATA[git clone
https://github.com/apache/turbine-core]]></source>
+
+ <p>The old svn repository of Turbine is still available in readonly mode.
+ <a href="https://svn.apache.org/repos/asf/turbine/core/trunk">SVN
Turbine Trunk (deprecated)</a>.
+ </p>
</section>
<section name="Building The Source">
<p>
- Be sure and read the README.txt file for instructions on how to build
Turbine.
+ Be sure and read the README.md file for instructions on how to build
Turbine.
Turbine uses <a href="http://maven.apache.org/">Maven</a> as its
build system, and building is as simple as running 'mvn package'
at the top of the source directory.