Skip to content

Commit

Permalink
코드 베이스 간소화 및 1.16.1 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
sokcuri committed Jul 18, 2020
1 parent 4e4f98a commit f704936
Show file tree
Hide file tree
Showing 14 changed files with 71 additions and 993 deletions.
20 changes: 17 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.

compileJava.options.encoding = 'UTF-8'
version = '1.14.4-0.6.0'
version = '1.16.1-0.7.0'
group = 'kr.neko.sokcuri.naraechat' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'naraechat'

Expand All @@ -32,7 +32,18 @@ configurations {
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.

minecraft {
mappings channel: 'snapshot', version: '20190719-1.14.3'
// The mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD Snapshot are built nightly.
// stable_# Stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace.
mappings channel: 'snapshot', version: '20200707-1.16.1'
// makeObfSourceJar false // an Srg named sources jar is made by default. uncomment this to disable.

// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')

// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
client {
workingDirectory project.file('run')
Expand All @@ -52,7 +63,10 @@ minecraft {
}

dependencies {
minecraft 'net.minecraftforge:forge:1.14.4-28.0.55'
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.16.1-32.0.47'
compile 'net.java.dev.jna:jna:4.1.0'
compile 'net.java.dev.jna:jna-platform:4.1.0'
compile 'org.apache.commons:commons-text:1.7'
Expand Down

This file was deleted.

112 changes: 0 additions & 112 deletions src/main/java/kr/neko/sokcuri/naraechat/Config/ConfigHelper.java

This file was deleted.

This file was deleted.

Loading

0 comments on commit f704936

Please sign in to comment.