File tree Expand file tree Collapse file tree 2 files changed +1
-16
lines changed
src/main/java/net/minecraftforge/gradle/common Expand file tree Collapse file tree 2 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,7 @@ pipeline {
4040 steps {
4141 withGradle {
4242 sh ' ./gradlew ${GRADLE_ARGS} --refresh-dependencies --continue build test'
43- }
44- script {
45- env. MYGROUP = sh(returnStdout : true , script : ' ./gradlew properties -q | grep "group:" | awk \' {print $2}\' ' ). trim()
46- env. MYARTIFACT = sh(returnStdout : true , script : ' ./gradlew properties -q | grep "name:" | awk \' {print $2}\' ' ). trim()
47- env. MYVERSION = sh(returnStdout : true , script : ' ./gradlew properties -q | grep "version:" | awk \' {print $2}\' ' ). trim()
43+ gradleVersion(this )
4844 }
4945 }
5046 }
Original file line number Diff line number Diff line change @@ -258,14 +258,6 @@ protected void afterEvaluate()
258258 "ext" , "zip"
259259 ));
260260
261- // Check FG Version, unless its disabled
262- List <String > lines = Lists .newArrayListWithExpectedSize (5 );
263- Object disableUpdateCheck = project .getProperties ().get ("net.minecraftforge.gradle.disableUpdateChecker" );
264- if (!"true" .equals (disableUpdateCheck ) && !"yes" .equals (disableUpdateCheck ) && !new Boolean (true ).equals (disableUpdateCheck ))
265- {
266- doFGVersionCheck (lines );
267- }
268-
269261 LOGGER .warn ("WARNING: You are using an unsupported version of ForgeGradle." );
270262 LOGGER .warn ("Please consider upgrading to ForgeGradle 4 and helping in the efforts to get old versions working on the modern toolchain." );
271263 LOGGER .warn ("See https://gist.github.com/TheCurle/fe7ad3ede188cbdd15c235cc75d52d4a for more info on contributing." );
@@ -283,9 +275,6 @@ protected void afterEvaluate()
283275 LOGGER .lifecycle (" Fesh0r, IngisKahn, bspkrs, LexManos " );
284276 LOGGER .lifecycle ("#################################################" );
285277
286- for (String str : lines )
287- LOGGER .lifecycle (str );
288-
289278 displayBanner = false ;
290279 }
291280
You can’t perform that action at this time.
0 commit comments