Skip to content

Commit 4b1b06a

Browse files
committed
build: add required project metadata to pom
1 parent 70b08c2 commit 4b1b06a

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

decoder/build.gradle.kts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,29 @@ publishing {
2929
version = rootProject.version.toString()
3030

3131
from(components["java"])
32+
33+
pom {
34+
name = "Java Midi Decoder"
35+
description = "Simple Java library for decoding javax.sound.midi messages"
36+
url = "https://github.com/suniala/java-midi-decoder"
37+
licenses {
38+
license {
39+
name = "BSD 2-Clause \"Simplified\" License"
40+
url = "https://raw.githubusercontent.com/suniala/java-midi-decoder/refs/heads/main/LICENSE.md"
41+
}
42+
}
43+
developers {
44+
developer {
45+
name = "Mikko Suniala"
46+
email = "mikko.suniala@iki.fi"
47+
}
48+
}
49+
scm {
50+
connection = "scm:git:git://github.com/suniala/java-midi-decoder.git"
51+
developerConnection = "scm:git:ssh://github.com/suniala/java-midi-decoder.git"
52+
url = "https://github.com/suniala/java-midi-decoder"
53+
}
54+
}
3255
}
3356
}
3457

0 commit comments

Comments
 (0)