Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ tasks.configureEach {
tasks.register('agentJar', Jar).configure {
from sourceSets.api.output
from sourceSets.agent.output
classifier 'agent'
archiveClassifier.set 'agent'
group 'build'
description 'Builds the agent JAR'

Expand Down Expand Up @@ -164,7 +164,7 @@ tasks.register('copyAgentJar', Copy) {

tasks.register('selfUpdateJar', Jar).configure {
from sourceSets.selfupdate.output
classifier 'selfupdate'
archiveClassifier.set 'selfupdate'
group 'build'
description 'Builds the selfupdate JAR'
manifest.attributes(makeManifestAttributes('Main-Class', 'com.mcmoddev.relauncher.selfupdate.SelfUpdate'))
Expand Down Expand Up @@ -195,7 +195,7 @@ tasks.named('shadowJar', ShadowJar).configure {
project.configurations.shade,
project.configurations.logback
]
classifier 'all'
archiveClassifier.set 'all'
group 'build'
description 'Builds the whole project with its dependencies.'
}
Expand All @@ -219,7 +219,7 @@ tasks.named(JavaPlugin.JAR_TASK_NAME, Jar).configure {
tasks.register('apiJar', Jar).configure {
from sourceSets.api.output
manifest.attributes(makeManifestAttributes("", ""))
classifier 'api'
archiveClassifier.set 'api'
description 'Builds the api jar.'
dependsOn tasks.named('updateLicenses')
group 'build'
Expand All @@ -229,15 +229,15 @@ tasks.register('sourcesJar', Jar).configure {
dependsOn 'launcherClasses'
from sourceSets.api.allSource
from sourceSets.launcher.allSource
classifier 'sources'
archiveClassifier.set 'sources'
group 'build'
description 'Builds the sources jar'
}

tasks.register('apiSourcesJar', Jar).configure {
dependsOn 'apiClasses'
from sourceSets.api.allSource
classifier 'api-sources'
archiveClassifier.set 'api-sources'
group 'build'
description 'Builds the api sources jar'
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
18 changes: 14 additions & 4 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

181 changes: 92 additions & 89 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.