You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by po...@apache.org on 2016/07/05 22:08:36 UTC

[1/2] incubator-tamaya git commit: Replace real mail address with spam secure version

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master d6c3f549a -> 5fdae7b1e


Replace real mail address with spam secure version


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/ba2f279b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/ba2f279b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/ba2f279b

Branch: refs/heads/master
Commit: ba2f279b81e0ed9919af36f1febc43102af54438
Parents: d6c3f54
Author: Phil Ottlinger <po...@apache.org>
Authored: Wed Jul 6 00:05:31 2016 +0200
Committer: Phil Ottlinger <po...@apache.org>
Committed: Wed Jul 6 00:05:31 2016 +0200

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/ba2f279b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e7528f2..cd280fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -206,7 +206,7 @@ under the License.
             <roles>
                 <role>Committer</role>
             </roles>
-            <email>pottlinger@apache.org</email>
+            <email>pottlinger at apache.org</email>
             <timezone>+1</timezone>
         </developer>
     </developers>


[2/2] incubator-tamaya git commit: Add helper script to fix SSL problems on the generated mvn site.

Posted by po...@apache.org.
Add helper script to fix SSL problems on the generated mvn site.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/5fdae7b1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/5fdae7b1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/5fdae7b1

Branch: refs/heads/master
Commit: 5fdae7b1e96322d1211d8709852c7edadb24f6bf
Parents: ba2f279
Author: Phil Ottlinger <po...@apache.org>
Authored: Wed Jul 6 00:08:07 2016 +0200
Committer: Phil Ottlinger <po...@apache.org>
Committed: Wed Jul 6 00:08:07 2016 +0200

----------------------------------------------------------------------
 bin/fixSSLinMavenSite.sh | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5fdae7b1/bin/fixSSLinMavenSite.sh
----------------------------------------------------------------------
diff --git a/bin/fixSSLinMavenSite.sh b/bin/fixSSLinMavenSite.sh
new file mode 100755
index 0000000..6b72e63
--- /dev/null
+++ b/bin/fixSSLinMavenSite.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+echo "Will replace http with https in the generated maven site ..."
+read -p "Please abort in case you haven't generated the site or press RETURN to continue."
+cd ../target/site
+sed -i 's/"https:/"https:/g' *.html
+echo "DONE - please verify before pushing."