Skip to content

Commit c487aeb

Browse files
committed
Prepping for OSS devcontainer
GitOrigin-RevId: 98d93b38fe397390223567687f7d314fd0850c07
1 parent 0d68c3f commit c487aeb

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,6 @@ dependency-reduced-pom.xml
146146
.vscode/**/*
147147

148148
settings.xml
149-
toolchains.xml
149+
toolchains.xml
150+
151+
/sandbox/data

build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ group = 'us.mcparks'
7373
version = '1.12-1-' + gitVersion()
7474
description = 'ShowScript'
7575
java.sourceCompatibility = JavaVersion.VERSION_1_8
76+
java.targetCompatibility = JavaVersion.VERSION_1_8
7677
archivesBaseName = 'showscript'
7778
shadowJar.archiveFileName = "showscript.jar"
7879
build.dependsOn(shadowJar)
@@ -82,6 +83,33 @@ publishing {
8283
publications {
8384
gpr(MavenPublication) {
8485
artifact file("build/libs/showscript.jar")
86+
pom {
87+
name = "ShowScript"
88+
description = "A Spigot plugin and programming language for scheduling commands to run at specified timecodes"
89+
url = "https://github.com/MCParks/ShowScript"
90+
91+
licenses {
92+
license {
93+
// agpl-3.0
94+
name = "GNU Affero General Public License v3.0"
95+
url = "https://www.gnu.org/licenses/agpl-3.0.html"
96+
}
97+
}
98+
99+
developers {
100+
developer {
101+
id = "MCParks"
102+
name = "MCParks"
103+
email = ""
104+
}
105+
}
106+
107+
scm {
108+
connection = "scm:git:git://github.com/MCParks/ShowScript.git"
109+
developerConnection = "scm:git:ssh://github.com/MCParks/ShowScript.git"
110+
url = "https://github.com/MCParks/ShowScript"
111+
}
112+
}
85113
}
86114
}
87115
repositories {

0 commit comments

Comments
 (0)