Skip to content

Commit c0ebe14

Browse files
committed
fixes
1 parent 3dd9b4c commit c0ebe14

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ publishing {
263263
pom {
264264
artifactId = project.getArchivesBaseName()
265265
name = "Box Java SDK"
266-
description = "The Box SDK for Java."
266+
description = "Official Box Java SDK."
267267
url = "https://opensource.box.com/box-java-sdk/"
268268
packaging = "jar"
269269
licenses {
@@ -275,7 +275,7 @@ publishing {
275275
developers {
276276
developer {
277277
id = "box"
278-
name = "Box"
278+
name = "box"
279279
280280
}
281281
}
@@ -299,12 +299,12 @@ signing {
299299
required { !version.endsWith("SNAPSHOT") && gradle.taskGraph.hasTask("publish") }
300300
// we are switching to gpg-agent and not using Java-based implementation because of
301301
// org.bouncycastle:bc-fips:1.0.2.1 libray preset in our Docker machines which is
302-
// not comaptible with Gradle implementation
302+
// not compatible with Gradle implementation
303303
useGpgCmd()
304304
sign publishing.publications.boxJavaSdk
305305
}
306306

307-
def centralUsername = project.findProperty("centralUsername")
307+
def centralUsername = project.findProperty("centralUsername")
308308
def centralPassword = project.findProperty("centralPassword")
309309
jreleaser {
310310
signing {
@@ -314,9 +314,9 @@ jreleaser {
314314
maven {
315315
mavenCentral {
316316
sonatype {
317+
active = "ALWAYS"
318+
url = "https://central.sonatype.com/api/v1/publisher"
317319
sign = false
318-
active = 'RELEASE'
319-
url = 'https://central.sonatype.com/api/v1/publisher'
320320
stagingRepository('build/staging-deploy')
321321
username = centralUsername
322322
password = centralPassword

0 commit comments

Comments
 (0)