Skip to content

Commit 3cac7be

Browse files
committed
Fixed bintray config
1 parent 4604036 commit 3cac7be

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

client/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ publishing {
6868
create<MavenPublication>("mavenJava") {
6969
from(components["java"])
7070
artifact(sourcesJar)
71+
artifact(dokkaJar)
7172
}
7273
}
7374
}
@@ -132,7 +133,7 @@ bintray {
132133
pkg(delegateClosureOf<BintrayExtension.PackageConfig> {
133134
repo = "maven"
134135
name = "regnum-client"
135-
userOrg = "drschlaubi"
136+
userOrg = "hawk"
136137
setLicenses("GPL-3.0")
137138
vcsUrl = "https://github.com/DRSchlaubi/regnum.git"
138139
version(delegateClosureOf<BintrayExtension.VersionConfig> {

plugin/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ publishing {
4949
publications {
5050
create<MavenPublication>("mavenJava") {
5151
from(components["java"])
52+
artifact(sourcesJar)
53+
artifact(dokkaJar)
5254
}
5355
}
5456
}

shared/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ publishing {
8282
publications {
8383
create<MavenPublication>("mavenJava") {
8484
from(components["java"])
85+
artifact(sourcesJar)
86+
artifact(dokkaJar)
8587
}
8688
}
8789
}

standalone/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ publishing {
4040
publications {
4141
create<MavenPublication>("mavenJava") {
4242
from(components["java"])
43+
artifact(sourcesJar)
44+
artifact(dokkaJar)
4345
}
4446
}
4547
}
@@ -51,7 +53,7 @@ bintray {
5153
pkg(delegateClosureOf<BintrayExtension.PackageConfig> {
5254
repo = "maven"
5355
name = "regnum-standalone"
54-
userOrg = "drschlaubi"
56+
userOrg = "hawk"
5557
setLicenses("GPL-3.0")
5658
vcsUrl = "https://github.com/DRSchlaubi/regnum.git"
5759
version(delegateClosureOf<BintrayExtension.VersionConfig> {

0 commit comments

Comments
 (0)