File tree 4 files changed +6
-7
lines changed
src/main/java/com/mcmoddev/orespawn
4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ buildscript {
19
19
dependencies {
20
20
classpath ' net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
21
21
classpath ' gradle.plugin.com.matthewprenger:CurseGradle:1.0.9'
22
- classpath ' org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.5 '
22
+ classpath ' org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1 '
23
23
}
24
24
}
25
25
@@ -72,7 +72,7 @@ minecraft {
72
72
version = ' 1.11.2-13.20.1.2386'
73
73
runDir = ' run'
74
74
mappings = ' stable_32'
75
- // coreMod = ""
75
+ // coreMod = ''
76
76
makeObfSourceJar = false
77
77
78
78
replace ' @FINGERPRINT@' , project. findProperty(' signSHA1' )
@@ -254,7 +254,7 @@ curseforge {
254
254
project {
255
255
id = " 245586"
256
256
changelog = file(" CHANGELOG.txt" )
257
- releaseType = " alpha "
257
+ releaseType = " release "
258
258
def projName = " OreSpawn"
259
259
def displayVersion = getVersion(" VERSION" , mod_file)
260
260
if (System . getenv(). BUILD_NUMBER ) {
Original file line number Diff line number Diff line change 22
22
import org .apache .logging .log4j .LogManager ;
23
23
import org .apache .logging .log4j .Logger ;
24
24
25
-
26
25
import net .minecraftforge .common .MinecraftForge ;
27
26
import net .minecraftforge .fml .common .Mod ;
28
27
import net .minecraftforge .fml .common .Mod .EventHandler ;
Original file line number Diff line number Diff line change @@ -133,8 +133,8 @@ private static void saveKnownConfigs() {
133
133
File in = p .toFile ();
134
134
135
135
JsonArray data = new JsonArray ();
136
-
137
- extractedConfigs .forEach ( val -> data .add ( new JsonPrimitive (val ) ) );
136
+
137
+ extractedConfigs .forEach ( val -> data .add (new JsonPrimitive (val )) );
138
138
139
139
try {
140
140
FileUtils .writeStringToFile (in , gson .toJson (data ), Charset .defaultCharset ());
Original file line number Diff line number Diff line change 3
3
public class Constants {
4
4
public static final String MODID = "orespawn" ;
5
5
public static final String NAME = "MMD OreSpawn" ;
6
- public static final String VERSION = "3.2.0 " ;
6
+ public static final String VERSION = "3.2.1 " ;
7
7
public static final String RETROGEN_KEY = "Retrogen" ;
8
8
public static final String CONFIG_FILE = "config/orespawn.cfg" ;
9
9
public static final String FORCE_RETROGEN_KEY = "Force Retrogen" ;
You can’t perform that action at this time.
0 commit comments