Skip to content

Commit 89286ac

Browse files
committed
Hide MCInjectorImpl, you should use MCInjector directly as a builder.
Removed old exc format, split data into separate smaller files for easier/cleaner formats. Removed json data. May review later, but shouldn't be needed for MC anymore. Reworked the command line arguments parsing to be more strick/helpful. Bumped required java version to 8.
1 parent 769561e commit 89286ac

22 files changed

+643
-1644
lines changed

build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ apply plugin: 'eclipse'
1414
apply plugin: 'maven'
1515

1616
group = 'de.oceanlabs.mcp'
17-
version = '3.6'
18-
targetCompatibility = '1.6'
19-
sourceCompatibility = '1.6'
17+
version = '3.7-SNAPSHOT'
18+
targetCompatibility = sourceCompatibility = '1.8'
19+
compileJava {
20+
sourceCompatibility = targetCompatibility = '1.8'
21+
}
2022

2123
repositories {
2224
mavenCentral()
@@ -40,7 +42,7 @@ artifacts {
4042
dependencies {
4143
compile 'org.ow2.asm:asm:6.1-beta2'
4244
compile 'org.ow2.asm:asm-tree:6.1-beta2'
43-
compile 'net.sf.jopt-simple:jopt-simple:4.5'
45+
compile 'net.sf.jopt-simple:jopt-simple:4.9'
4446
compile 'com.google.code.gson:gson:2.2.4'
4547
}
4648
configurations { deployJars }

src/main/java/de/oceanlabs/mcp/mcinjector/InheratanceMap.java

-117
This file was deleted.

src/main/java/de/oceanlabs/mcp/mcinjector/JsonStruct.java

-64
This file was deleted.

0 commit comments

Comments
 (0)