This is an automated email from the ASF dual-hosted git repository.
aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master by this push:
new 5d5ede7 WIP.
5d5ede7 is described below
commit 5d5ede78fe66ca584464792e23293b39b1075ac2
Author: Aaron Radzinzski <[email protected]>
AuthorDate: Mon Apr 26 16:21:58 2021 +0300
WIP.
---
nlpcraft-examples/minecraft-mod/build.gradle | 16 ++++++++--------
.../minecraft-mod/src/main/resources/META-INF/mods.toml | 4 ++--
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/nlpcraft-examples/minecraft-mod/build.gradle
b/nlpcraft-examples/minecraft-mod/build.gradle
index 988b757..a38d331 100644
--- a/nlpcraft-examples/minecraft-mod/build.gradle
+++ b/nlpcraft-examples/minecraft-mod/build.gradle
@@ -60,12 +60,12 @@ dependencies {
jar {
manifest {
attributes([
- "Specification-Title" : "examplemod",
- "Specification-Vendor" : "examplemodsareus",
- "Specification-Version" : "1",
- "Implementation-Title" : project.name,
- "Implementation-Version" : "${version}",
- "Implementation-Vendor" : "examplemodsareus",
+ "Specification-Title": "examplemod",
+ "Specification-Vendor": "examplemodsareus",
+ "Specification-Version": "1",
+ "Implementation-Title": project.name,
+ "Implementation-Version": "${version}",
+ "Implementation-Vendor": "examplemodsareus",
"Implementation-Timestamp": new
Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
@@ -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.nplcraft.example.minecraft.GameFilesDump"
+ main = "org.apache.nlpcraft.example.minecraft.GameFilesDump"
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.nplcraft.example.minecraft.GameFilesDump"
+ main = "org.apache.nlpcraft.example.minecraft.GameFilesDump"
args "block", minecraftVersion
}
diff --git
a/nlpcraft-examples/minecraft-mod/src/main/resources/META-INF/mods.toml
b/nlpcraft-examples/minecraft-mod/src/main/resources/META-INF/mods.toml
index ae74561..22ce47b 100644
--- a/nlpcraft-examples/minecraft-mod/src/main/resources/META-INF/mods.toml
+++ b/nlpcraft-examples/minecraft-mod/src/main/resources/META-INF/mods.toml
@@ -21,8 +21,8 @@ license="Apache"
[[mods]]
modId="nlpcraft_mod"
version="${file.jarVersion}"
-displayName="Nlpcraft example Mod"
+displayName="NLPCraft example mod"
displayURL="https://nlpcraft.apache.org/"
description='''
-Nlpcraft example mod
+NLPCraft example mod
'''
\ No newline at end of file