Skip to content

Commit 1dedb06

Browse files
committed
Update to NeoForged.
1 parent 96a7b6a commit 1dedb06

File tree

6 files changed

+165
-111
lines changed

6 files changed

+165
-111
lines changed

.teamcity/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</repository>
2323
<repository>
2424
<id>teamcity-server</id>
25-
<url>https://teamcity.MinecraftForge_McModLauncher.net/app/dsl-plugins-repository</url>
25+
<url>https://teamcity.neoforged.net/app/dsl-plugins-repository</url>
2626
<snapshots>
2727
<enabled>true</enabled>
2828
</snapshots>

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66

77
plugins {
88
id 'com.github.ben-manes.versions' version '0.42.0'
9-
id 'net.minecraftforge.gradleutils' version '2.+'
9+
id 'net.neoforged.gradleutils' version '[2.0.16,3)'
1010
}
1111

1212
apply plugin: 'maven-publish'
@@ -27,7 +27,7 @@ allprojects {
2727
mavenLocal()
2828
maven {
2929
name = 'forge'
30-
url = 'https://maven.minecraftforge.net/'
30+
url = 'https://maven.neoforged.net/releases'
3131
}
3232
}
3333

@@ -152,11 +152,11 @@ jar {
152152
manifest {
153153
attributes(
154154
'Specification-Title': 'securejarhandler',
155-
'Specification-Vendor': 'forge',
155+
'Specification-Vendor': 'neoforged',
156156
'Specification-Version': '1', // We are version 1 of ourselves
157157
'Implementation-Title': project.name,
158158
'Implementation-Version': "${project.version}+${System.getenv('BUILD_NUMBER')?:0}+${gradleutils.gitInfo.branch}.${gradleutils.gitInfo.abbreviatedId}",
159-
'Implementation-Vendor':'forge',
159+
'Implementation-Vendor':'neoforged',
160160
'Implementation-Timestamp': java.time.Instant.now().toString(),
161161
'Git-Commit': gradleutils.gitInfo.abbreviatedId,
162162
'Git-Branch': gradleutils.gitInfo.branch,

gradle/wrapper/gradle-wrapper.jar

618 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 153 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
pluginManagement {
22
repositories {
33
gradlePluginPortal()
4-
maven { url = 'https://maven.minecraftforge.net/' }
4+
maven { url = 'https://maven.neoforged.net/releases' }
55
}
66
}
7+
8+
plugins {
9+
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.4.0'
10+
}
11+
712
rootProject.name = 'securejarhandler'
813
include 'sjh-jmh'

0 commit comments

Comments
 (0)