This is an automated email from the ASF dual-hosted git repository.
jfeinauer pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-edgent.git
The following commit(s) were added to refs/heads/develop by this push:
new 27ed97a Changed git url to gitbox after relocation to gitbox.
27ed97a is described below
commit 27ed97ac3fa2651fd1d65163d0a3976b32cb1640
Author: Julian Feinauer <[email protected]>
AuthorDate: Tue Jan 8 09:04:59 2019 +0100
Changed git url to gitbox after relocation to gitbox.
---
DEVELOPMENT.md | 4 ++--
README | 2 +-
buildTools/common.sh | 2 +-
buildTools/make_release_branch.sh | 2 +-
.../src/main/java/org/apache/edgent/console/server/HttpServer.java | 2 +-
pom.xml | 7 ++++---
src/site/asciidoc/releasing.adoc | 2 +-
7 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index e7b71f8..777a6c9 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -573,7 +573,7 @@ Search the code for org.slf4j.LoggerFactory to see a sample
of its use.
The Edgent code is in ASF resident git repositories:
- https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
+ https://gitbox.apache.org/repos/asf/incubator-edgent.git
The repositories are mirrored on GitHub:
@@ -610,7 +610,7 @@ into the repo at the ASF. One way is described here:
Notes with the above PR merge directions:
* Use an HTTPS URL unless you have a SSH key setup at GitHub:
- - `$ git remote add mirror https://github.com/apache/incubator-edgent.git`
+ - `$ git remote add mirror
https://gitbox.apache.org/repos/asf/incubator-edgent.git`
## Using Eclipse
diff --git a/README b/README
index 40d08ad..2132d66 100644
--- a/README
+++ b/README
@@ -20,7 +20,7 @@ Additional Information
Apache Edgent is supported on several Java target platforms.
For more information see JAVA_SUPPORT.md in the source tree
-or in the ASF git repository
https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
+or in the ASF git repository
https://gitbox.apache.org/repos/asf/incubator-edgent.git
or in the repository mirror at github
https://github.com/apache/incubator-edgent.
See DEVELOPMENT.md in this folder or
diff --git a/buildTools/common.sh b/buildTools/common.sh
index 2cf438f..bb1c167 100755
--- a/buildTools/common.sh
+++ b/buildTools/common.sh
@@ -25,7 +25,7 @@ EDGENT_ROOT_DIR=.
# BUNDLE_DIR is results of maven release:perform's creation of release
candidate
BUNDLE_DIR=${EDGENT_ROOT_DIR}/target/checkout/target
-EDGENT_ASF_GIT_URL=https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
+EDGENT_ASF_GIT_URL=https://gitbox.apache.org/repos/asf/incubator-edgent.git
EDGENT_ASF_DIST_URL=https://www.apache.org/dist/incubator/edgent
EDGENT_ASF_DIST_DYN_URL=https://www.apache.org/dyn/closer.cgi/incubator/edgent
EDGENT_ASF_SVN_RELEASE_URL=https://dist.apache.org/repos/dist/release/incubator/edgent
diff --git a/buildTools/make_release_branch.sh
b/buildTools/make_release_branch.sh
index c45d619..8f41a38 100755
--- a/buildTools/make_release_branch.sh
+++ b/buildTools/make_release_branch.sh
@@ -32,7 +32,7 @@ set -e
# start with "mgmt-edgent" as the builtTools scripts check for that
# to help keep one on the right path, e.g.,
#
-# git clone https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
mgmt-edgent<version>
+# git clone https://gitbox.apache.org/repos/asf/incubator-edgent.git
mgmt-edgent<version>
. `dirname $0`/common.sh
diff --git
a/console/server/src/main/java/org/apache/edgent/console/server/HttpServer.java
b/console/server/src/main/java/org/apache/edgent/console/server/HttpServer.java
index dd89093..4d51644 100644
---
a/console/server/src/main/java/org/apache/edgent/console/server/HttpServer.java
+++
b/console/server/src/main/java/org/apache/edgent/console/server/HttpServer.java
@@ -41,7 +41,7 @@ public class HttpServer {
private static final Logger logger =
LoggerFactory.getLogger(HttpServer.class);
- /**
+ /**J
* The only constructor. A private no-argument constructor. Called
only once from the static HttpServerHolder class.
*/
private HttpServer() {
diff --git a/pom.xml b/pom.xml
index b730b5e..a53f0ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,8 +39,8 @@
<inceptionYear>2016</inceptionYear>
<scm>
-
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-edgent.git</connection>
-
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-edgent.git</developerConnection>
+
<connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-edgent.git</connection>
+
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-edgent.git</developerConnection>
<url>https://github.com/apache/incubator-edgent</url>
<tag>HEAD</tag>
</scm>
@@ -70,7 +70,8 @@
<distributionManagement>
<site>
<id>apache.website</id>
-
<url>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-edgent.git</url>
+ <!--TODO 8.1.19 jf: is this correct or is the -website missing?-->
+
<url>scm:git:https://gitbox.apache.org/repos/asf/incubator-edgent.git</url>
</site>
</distributionManagement>
diff --git a/src/site/asciidoc/releasing.adoc b/src/site/asciidoc/releasing.adoc
index 3615483..be17902 100644
--- a/src/site/asciidoc/releasing.adoc
+++ b/src/site/asciidoc/releasing.adoc
@@ -77,7 +77,7 @@ Skip this if you already created the clone as directed in the
Release Manager's
Create the clone:
- git clone https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
mgmt-edgent-1.2.0
+ git clone https://gitbox.apache.org/repos/asf/incubator-edgent.git
mgmt-edgent-1.2.0
cd mgmt-edgent-1.2.0
== Create the Release Branch