diff --git a/Forge/build.gradle b/Forge/build.gradle index 340258b7..af240d63 100644 --- a/Forge/build.gradle +++ b/Forge/build.gradle @@ -122,6 +122,21 @@ tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + groupId = 'software.bluelib' + artifactId = 'bluelib' + version = '1.0.0' + } + } + repositories { + mavenLocal() + } +} + + eclipse { synchronizationTasks 'genEclipseRuns' } diff --git a/Forge/src/main/resources/META-INF/mods.toml b/Forge/src/main/resources/META-INF/mods.toml index d79a67b3..cf09a122 100644 --- a/Forge/src/main/resources/META-INF/mods.toml +++ b/Forge/src/main/resources/META-INF/mods.toml @@ -6,8 +6,8 @@ license="${mod_license}" modId="${mod_id}" version="${mod_version}" displayName="${mod_name}" -displayURL="https://github.com/MeAlam1/BlueLib/wiki" -#logoFile="examplemod.png" +displayURL="https://mealam1.github.io/BlueLib/" +logoFile="bluelib.png" credits="Anyone who contributed to the Source Code of BlueLib!" authors="${mod_authors}" description='''${mod_description}''' diff --git a/Forge/src/main/resources/bluelib.png b/Forge/src/main/resources/bluelib.png new file mode 100644 index 00000000..1896bcdd Binary files /dev/null and b/Forge/src/main/resources/bluelib.png differ