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

sergeykamov pushed a commit to branch NLPCRAFT-305
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/NLPCRAFT-305 by this push:
     new 3d9c331  WIP.
3d9c331 is described below

commit 3d9c331c63d32fcc5e604b4c144aa6f9817eb2f9
Author: Sergey Kamov <[email protected]>
AuthorDate: Tue Apr 27 15:38:02 2021 +0300

    WIP.
---
 nlpcraft-examples/minecraft-mod/.gitignore         |   1 -
 nlpcraft-examples/minecraft-mod/build.gradle       |   4 ++--
 .../gradle/wrapper/gradle-wrapper.jar              | Bin 0 -> 59203 bytes
 .../gradle/wrapper/gradle-wrapper.properties       |  23 +++++++++++++++++++++
 nlpcraft-examples/minecraft-mod/tmp/build.gradle   |  19 +++++++++++++++++
 5 files changed, 44 insertions(+), 3 deletions(-)

diff --git a/nlpcraft-examples/minecraft-mod/.gitignore 
b/nlpcraft-examples/minecraft-mod/.gitignore
index 6bda385..b6f374b 100644
--- a/nlpcraft-examples/minecraft-mod/.gitignore
+++ b/nlpcraft-examples/minecraft-mod/.gitignore
@@ -1,4 +1,3 @@
 logs
 .gradle
-gradle
 build
\ No newline at end of file
diff --git a/nlpcraft-examples/minecraft-mod/build.gradle 
b/nlpcraft-examples/minecraft-mod/build.gradle
index b1dd4d9..c6973e4 100644
--- a/nlpcraft-examples/minecraft-mod/build.gradle
+++ b/nlpcraft-examples/minecraft-mod/build.gradle
@@ -74,14 +74,14 @@ jar {
 task dumpBlocks(type: JavaExec) {
     description = 'Dumps game file objects. Supports 2 types: items and blocks'
     classpath sourceSets.main.runtimeClasspath
-    main = "org.apache.nlpcraft.example.minecraft.NCMinecraftFilesDump"
+    main = "org.apache.nlpcraft.example.minecraft.utils.NCMinecraftFilesDump"
     args "block", minecraftVersion
 }
 
 task dumpItems(type: JavaExec) {
     description = 'Dumps game file objects. Supports 2 types: items and blocks'
     classpath sourceSets.main.runtimeClasspath
-    main = "org.apache.nlpcraft.example.minecraft.NCMinecraftFilesDump"
+    main = "org.apache.nlpcraft.example.minecraft.utils.NCMinecraftFilesDump"
     args "block", minecraftVersion
 }
 
diff --git a/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.jar 
b/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and 
b/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.jar differ
diff --git 
a/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.properties 
b/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..67e1748
--- /dev/null
+++ b/nlpcraft-examples/minecraft-mod/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,23 @@
+#!/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.
+#
+
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/nlpcraft-examples/minecraft-mod/tmp/build.gradle 
b/nlpcraft-examples/minecraft-mod/tmp/build.gradle
new file mode 100644
index 0000000..2b31ad5
--- /dev/null
+++ b/nlpcraft-examples/minecraft-mod/tmp/build.gradle
@@ -0,0 +1,19 @@
+/*
+ * 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.
+ *
+ */
+
+wrapper.gradleVersion='4.10.3'
\ No newline at end of file

Reply via email to