You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2019/01/05 05:32:03 UTC

[tomee-site-generator] branch master updated: Update repo locations after gitbox move.

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-site-generator.git


The following commit(s) were added to refs/heads/master by this push:
     new 25bbff2  Update repo locations after gitbox move.
25bbff2 is described below

commit 25bbff2f5fd957db5c4c0abd2047ccb1cbc5ae10
Author: David Blevins <da...@gmail.com>
AuthorDate: Fri Jan 4 21:31:42 2019 -0800

    Update repo locations after gitbox move.
---
 src/main/jbake/content/community/contributing/website.adoc |  2 +-
 src/main/jbake/content/community/sources.adoc              |  6 +++---
 src/main/jbake/content/dev/git.mdtext                      |  2 +-
 src/main/jbake/content/dev/source-code.mdtext              | 12 ++++++------
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/main/jbake/content/community/contributing/website.adoc b/src/main/jbake/content/community/contributing/website.adoc
index 6371c11..a61e776 100755
--- a/src/main/jbake/content/community/contributing/website.adoc
+++ b/src/main/jbake/content/community/contributing/website.adoc
@@ -6,7 +6,7 @@
 
 This website is a simple link:http://jbake.org/[JBake] project you can find at:
 
- - https://git-wip-us.apache.org/repos/asf/tomee-site-generator.git. (Apache)
+ - https://gitbox.apache.org/repos/asf/tomee-site-generator.git. (Apache)
 
  - https://github.com/apache/tomee-site-generator.git (Github mirror)
 
diff --git a/src/main/jbake/content/community/sources.adoc b/src/main/jbake/content/community/sources.adoc
index c02a476..991bafd 100755
--- a/src/main/jbake/content/community/sources.adoc
+++ b/src/main/jbake/content/community/sources.adoc
@@ -13,18 +13,18 @@ you would do on any Github project and Apache takes care of the rest of the proc
 
 TomEE is using https://git-scm.com/[Git] as source content manager.
 
-The master sources are on https://git-wip-us.apache.org/repos/asf/tomee.git and you can clone them using the following command:
+The master sources are on https://gitbox.apache.org/repos/asf/tomee.git and you can clone them using the following command:
 
 [source]
 ----
-git clone https://git-wip-us.apache.org/repos/asf/tomee.git tomee-master
+git clone https://gitbox.apache.org/repos/asf/tomee.git tomee-master
 ----
 
 If you are interested in 1.7.x branch only just checkout the `tomee-1.7.x` branch:
 
 [source]
 ----
-git clone -b tomee-1.7.x https://git-wip-us.apache.org/repos/asf/tomee.git tomee-1.7.x
+git clone -b tomee-1.7.x https://gitbox.apache.org/repos/asf/tomee.git tomee-1.7.x
 ----
 
 Master branch is the more up to date version of the codebase and currently targets TomEE 7.x branch.
diff --git a/src/main/jbake/content/dev/git.mdtext b/src/main/jbake/content/dev/git.mdtext
index c12ccd4..2e94bbe 100644
--- a/src/main/jbake/content/dev/git.mdtext
+++ b/src/main/jbake/content/dev/git.mdtext
@@ -10,7 +10,7 @@ Notes before you begin (mostly for SVN users):
 * Unlike SVN a 'commit' is only a local action. The local commits are only published to the remote repository using 'push'.  
 * Commit and push code to your own feature branch as often as you like, but only merge stable branches back into to the *develop* branch.  
 * Only the release manager should manage the *master* repository
-* Read the official Apache Committer documentation [here](https://git-wip-us.apache.org/#committers-getting-started) 
+* Read the official Apache Committer documentation [here](https://gitbox.apache.org/#committers-getting-started)
 
 <span style="color: rgb(128,0,0);">Run commands in the directory of the project you are working on, for example 'tomee':</span>
 
diff --git a/src/main/jbake/content/dev/source-code.mdtext b/src/main/jbake/content/dev/source-code.mdtext
index c9ffd7f..2708283 100644
--- a/src/main/jbake/content/dev/source-code.mdtext
+++ b/src/main/jbake/content/dev/source-code.mdtext
@@ -8,23 +8,23 @@ Probably the best GIT tutorial on the planet can be found here: [https://www.atl
 
 ###GIT Information for Everyone
 
-You can browse the source code via the [web interface](http://git-wip-us.apache.org/repos/asf/tomee.git).
+You can browse the source code via the [web interface](http://gitbox.apache.org/repos/asf/tomee.git).
 
 If you intend to hack on TomEE then it is recommended that you create a [GitHub Account](https://github.com) and [fork](https://help.github.com/articles/fork-a-repo/) the TomEE repository so that you can submit pull requests (See below).
 
-If you just want to build the source version then you can download (aka clone) the sources of Apache TomEE with a GIT client from the following URL [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) - The 'master' branch is the current development branch.
+If you just want to build the source version then you can download (aka clone) the sources of Apache TomEE with a GIT client from the following URL [https://gitbox.apache.org/repos/asf/tomee.git](https://gitbox.apache.org/repos/asf/tomee.git) - The 'master' branch is the current development branch.
 
 Performing the checkout from a command line using the GIT client (recommended) is as easy as executing the following command:
-> git clone [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) tomee
+> git clone [https://gitbox.apache.org/repos/asf/tomee.git](https://gitbox.apache.org/repos/asf/tomee.git) tomee
 
 If you want to checkout a specific branch then you can just change that in the command:
 
-> git clone -b tomee-1.7.x [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) tomee-1.7.x
+> git clone -b tomee-1.7.x [https://gitbox.apache.org/repos/asf/tomee.git](https://gitbox.apache.org/repos/asf/tomee.git) tomee-1.7.x
 
 Or alternatively with Apache Maven 3.0.5 or later:
 
 > mvn scm:checkout
-> -DconnectionUrl=scm:git:[https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git)
+> -DconnectionUrl=scm:git:[https://gitbox.apache.org/repos/asf/tomee.git](https://gitbox.apache.org/repos/asf/tomee.git)
 > -DcheckoutDirectory=tomee
 
 Note: This method does not require the GIT client.
@@ -38,7 +38,7 @@ We will be using the [Gitflow Workflow](https://www.atlassian.com/git/tutorials/
 
 See [here](https://help.github.com/articles/using-pull-requests/) for information on pull requests. 
 
-The official Apache Committer documentation can be found [here](https://git-wip-us.apache.org/#committers-getting-started)
+The official Apache Committer documentation can be found [here](https://gitbox.apache.org/#committers-getting-started)
 
 <a name="SourceCode-Continuousintegration"></a>
 ###Continuous integration