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 2017/02/24 20:38:59 UTC

incubator-tamaya-site git commit: TAMAYA-242: Add jbake 2.5.1 (in little steps)

Repository: incubator-tamaya-site
Updated Branches:
  refs/heads/master 0afd99e7a -> a056408a4


TAMAYA-242: Add jbake 2.5.1 (in little steps)


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

Branch: refs/heads/master
Commit: a056408a4ba10a1de23357bf7f064c9fe91c2458
Parents: 0afd99e
Author: Phil Ottlinger <po...@apache.org>
Authored: Fri Feb 24 21:38:26 2017 +0100
Committer: Phil Ottlinger <po...@apache.org>
Committed: Fri Feb 24 21:38:26 2017 +0100

----------------------------------------------------------------------
 bin/jbake-2.5.1/LICENSE        |  17 +++++++++++++++++
 bin/jbake-2.5.1/bin/jbake      |  21 +++++++++++++++++++++
 bin/jbake-2.5.1/bin/jbake.bat  |   2 ++
 bin/jbake-2.5.1/jbake-core.jar | Bin 0 -> 121670 bytes
 4 files changed, 40 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/a056408a/bin/jbake-2.5.1/LICENSE
----------------------------------------------------------------------
diff --git a/bin/jbake-2.5.1/LICENSE b/bin/jbake-2.5.1/LICENSE
new file mode 100644
index 0000000..0245a07
--- /dev/null
+++ b/bin/jbake-2.5.1/LICENSE
@@ -0,0 +1,17 @@
+The MIT License (MIT)
+
+Copyright (c) 2013 Jonathan Bullock & Contributors 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 
+documentation files (the "Software"), to deal in the Software without restriction, including without limitation 
+the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and 
+to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions 
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
+CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
+DEALINGS IN THE SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/a056408a/bin/jbake-2.5.1/bin/jbake
----------------------------------------------------------------------
diff --git a/bin/jbake-2.5.1/bin/jbake b/bin/jbake-2.5.1/bin/jbake
new file mode 100755
index 0000000..c1180fc
--- /dev/null
+++ b/bin/jbake-2.5.1/bin/jbake
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+P=$(realpath $0 2>/dev/null)
+if [ 0 -ne $? ]; then
+  P=$0
+fi
+
+EXEC_LOC="`dirname "$P"`"
+EXEC_PARENT="`dirname $EXEC_LOC`"
+
+CYGWIN=false;
+case "`uname`" in
+  CYGWIN*) CYGWIN=true;;
+esac
+
+if $CYGWIN ;
+then
+    java -jar $(cygpath -w "${EXEC_PARENT}/jbake-core.jar") $@
+else
+    java -jar "${EXEC_PARENT}/jbake-core.jar" $@
+fi
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/a056408a/bin/jbake-2.5.1/bin/jbake.bat
----------------------------------------------------------------------
diff --git a/bin/jbake-2.5.1/bin/jbake.bat b/bin/jbake-2.5.1/bin/jbake.bat
new file mode 100644
index 0000000..dccbf14
--- /dev/null
+++ b/bin/jbake-2.5.1/bin/jbake.bat
@@ -0,0 +1,2 @@
+@echo off
+java -jar "%~dp0\..\jbake-core.jar" %*

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/a056408a/bin/jbake-2.5.1/jbake-core.jar
----------------------------------------------------------------------
diff --git a/bin/jbake-2.5.1/jbake-core.jar b/bin/jbake-2.5.1/jbake-core.jar
new file mode 100644
index 0000000..984b383
Binary files /dev/null and b/bin/jbake-2.5.1/jbake-core.jar differ