Skip to content

Commit 88cf6cd

Browse files
committed
Exclude settings.gradle externally; lowercase all instances of artifact name in public build process
GitOrigin-RevId: a74ede4015df6eb10d6304df9b216f7b4a1756da
1 parent e6744e1 commit 88cf6cd

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,22 @@ group = 'us.mcparks'
7373
version = '1.12-1-' + gitVersion()
7474
description = 'ShowScript'
7575
java.sourceCompatibility = JavaVersion.VERSION_1_8
76-
archivesBaseName = 'ShowScript'
77-
shadowJar.archiveFileName = "ShowScript.jar"
76+
archivesBaseName = 'showscript'
77+
shadowJar.archiveFileName = "showscript.jar"
7878
build.dependsOn(shadowJar)
7979
jar.enabled = false
80+
rootProject.name = "showscript"
8081

8182
publishing {
8283
publications {
8384
gpr(MavenPublication) {
84-
artifact file("build/libs/ShowScript.jar")
85+
artifact file("build/libs/showscript.jar")
8586
}
8687
}
8788
repositories {
8889
maven {
8990
name = "GitHubPackages"
90-
url = uri("https://maven.pkg.github.com/MCParks/ShowScript")
91+
url = uri("https://maven.pkg.github.com/mcparks/showscript")
9192
credentials {
9293
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
9394
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")

settings.gradle

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)