You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@incubator.apache.org by po...@apache.org on 2017/07/06 00:20:55 UTC

[24/51] incubator git commit: Adding build script based on gradle.

Adding build script based on gradle.


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

Branch: refs/heads/master
Commit: 5922c984991b6c95ed7504c0c48cff444e2691fd
Parents: f59ab76
Author: John D. Ament <jo...@apache.org>
Authored: Mon Apr 17 21:27:33 2017 -0400
Committer: John D. Ament <jo...@apache.org>
Committed: Mon Apr 17 21:27:33 2017 -0400

----------------------------------------------------------------------
 build.gradle | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator/blob/5922c984/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..5ac3ba0
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,36 @@
+/*
+ *  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.
+ */
+
+buildscript {
+    repositories {
+        maven {
+            url "https://plugins.gradle.org/m2/"
+        }
+    }
+    dependencies {
+        classpath "me.champeau.gradle:jbake-gradle-plugin:0.2"
+    }
+}
+
+apply plugin: "me.champeau.jbake"
+
+jbake {
+    input = new java.io.File('.')
+    version  = '2.5.1'
+}
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@incubator.apache.org
For additional commands, e-mail: cvs-help@incubator.apache.org