File tree Expand file tree Collapse file tree 4 files changed +47
-6
lines changed Expand file tree Collapse file tree 4 files changed +47
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ buildscript {
10
10
// }
11
11
maven {
12
12
name = ' forge'
13
- url = ' http://files .minecraftforge.net/maven '
13
+ url = ' http://maven .minecraftforge.net/'
14
14
}
15
15
maven {
16
16
name = ' gradle'
@@ -31,7 +31,7 @@ buildscript {
31
31
plugins {
32
32
// id 'com.github.spotbugs' version '1.6.2'
33
33
id ' com.matthewprenger.cursegradle' version ' 1.4.0'
34
- id ' org.sonarqube' version ' 3.0 '
34
+ id ' org.sonarqube' version ' 2.8 '
35
35
}
36
36
37
37
apply plugin : ' net.minecraftforge.gradle.forge'
@@ -234,10 +234,10 @@ repositories {
234
234
name ' industrialcraft'
235
235
url ' http://maven.ic2.player.to/'
236
236
}
237
- maven { // HWYLA
237
+ /* maven { // HWYLA
238
238
name 'tehnut'
239
239
url 'http://tehnut.info/maven/'
240
- }
240
+ }*/
241
241
maven { // CoFH
242
242
name ' Covers Maven'
243
243
url ' http://maven.covers1624.net/'
Original file line number Diff line number Diff line change
1
+ { {#tags} }
2
+ { {#issues} }
3
+ { {#commits} }
4
+ **{ {{messageTitle} }}**
5
+ { {#messageBodyItems} }
6
+ * { {.} }
7
+ { {/messageBodyItems} }
8
+ { {/commits} }
9
+ { {/issues} }
10
+ { {/tags} }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mc_version = 1.12
9
9
10
10
fg_version = 2.3-SNAPSHOT
11
11
forge_mc_version = 1.12.2
12
- forge_version = 14.23.5.2768
12
+ forge_version = 14.23.5.2847
13
13
mcp_mappings = stable_39
14
14
15
15
cf_project_id = 240967
Original file line number Diff line number Diff line change
1
+ // Workaround to make the JUnit Platform Gradle Plugin available using the `plugins` DSL
2
+ // See https://github.com/junit-team/junit5/issues/768
3
+ if (! (GradleVersion . current() <= GradleVersion . version(' 2.14.1' ))) {
4
+ pluginManagement {
5
+ repositories {
6
+ gradlePluginPortal()
7
+ maven { url = ArtifactRepositoryContainer . MAVEN_CENTRAL_URL }
8
+ }
9
+ resolutionStrategy {
10
+ eachPlugin {
11
+ if (requested. id. id == ' org.junit.platform.gradle.plugin' ) {
12
+ useModule(" org.junit.platform:junit-platform-gradle-plugin:${ requested.version} " )
13
+ // } else if (requested.id.id == 'org.junit.platform.gradle.plugin') {
14
+ // useModule("org.junit.platform:junit-platform-gradle-plugin:${requested.version}")
15
+ }
16
+ }
17
+ }
18
+ }
19
+ }
20
+
1
21
rootProject. name = archivesBaseName
2
- enableFeaturePreview(' STABLE_PUBLISHING' )
22
+ import org.gradle.util.GradleVersion
23
+ if ((GradleVersion . current() >= GradleVersion . version(' 4.8' )) && (GradleVersion . current() <= GradleVersion . version(' 4.10.3' ))) {
24
+ enableFeaturePreview(' STABLE_PUBLISHING' ) // 4.10.3
25
+ }
26
+
27
+ // TODO: Things which likely don't work with FG yet, but I've not checked.
28
+ /*
29
+ if ((GradleVersion.current() >= GradleVersion.version('4.6')) && (GradleVersion.current() <= GradleVersion.version('4.10.3'))) {
30
+ enableFeaturePreview('IMPROVED_POM_SUPPORT') // Previously -Dorg.gradle.advancedpomsupport=true
31
+ enableFeaturePreview('GRADLE_METADATA') // Previously -Dorg.gradle.gradlemetadata=true
32
+ }
33
+ */
You can’t perform that action at this time.
0 commit comments