-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Vincent Batoufflet <[email protected]>
- Loading branch information
1 parent
1d33924
commit 069d347
Showing
5 changed files
with
44 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,4 @@ | ||
plugins { | ||
id("io.github.gradle-nexus.publish-plugin") version "1.1.0" | ||
} | ||
|
||
allprojects { | ||
group = "so.prelude.sdk" | ||
version = "0.1.0-beta.1" // x-release-please-version | ||
} | ||
|
||
nexusPublishing { | ||
repositories { | ||
sonatype { | ||
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) | ||
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) | ||
|
||
username.set(System.getenv("SONATYPE_USERNAME")) | ||
password.set(System.getenv("SONATYPE_PASSWORD")) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
plugins { | ||
`kotlin-dsl` | ||
kotlin("jvm") version "1.9.22" | ||
id("com.vanniktech.maven.publish") version "0.28.0" | ||
} | ||
|
||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.25.0") | ||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23") | ||
implementation("com.vanniktech:gradle-maven-publish-plugin:0.28.0") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,47 @@ | ||
import com.vanniktech.maven.publish.MavenPublishBaseExtension | ||
import com.vanniktech.maven.publish.SonatypeHost | ||
|
||
plugins { | ||
`maven-publish` | ||
signing | ||
id("com.vanniktech.maven.publish") | ||
} | ||
|
||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} | ||
|
||
configure<PublishingExtension> { | ||
publications { | ||
register<MavenPublication>("maven") { | ||
from(components["java"]) | ||
|
||
pom { | ||
name.set("Prelude API") | ||
description.set("The Prelude API allows you to send messages to your users.") | ||
url.set("https://docs.prelude.so") | ||
|
||
licenses { | ||
license { | ||
name.set("Apache-2.0") | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
name.set("Prelude") | ||
email.set("[email protected]") | ||
} | ||
} | ||
|
||
scm { | ||
connection.set("scm:git:git://github.com/prelude-so/java-sdk.git") | ||
developerConnection.set("scm:git:git://github.com/prelude-so/java-sdk.git") | ||
url.set("https://github.com/prelude-so/java-sdk") | ||
} | ||
|
||
versionMapping { | ||
allVariants { | ||
fromResolutionResult() | ||
} | ||
} | ||
extra["signingInMemoryKey"] = System.getenv("GPG_SIGNING_KEY") | ||
extra["signingInMemoryKeyId"] = System.getenv("GPG_SIGNING_KEY_ID") | ||
extra["signingInMemoryKeyPassword"] = System.getenv("GPG_SIGNING_PASSWORD") | ||
|
||
configure<MavenPublishBaseExtension> { | ||
signAllPublications() | ||
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) | ||
|
||
coordinates(project.group.toString(), project.name, project.version.toString()) | ||
|
||
pom { | ||
name.set("Prelude API") | ||
description.set("The Prelude API allows you to send messages to your users.") | ||
url.set("https://docs.prelude.so") | ||
|
||
licenses { | ||
license { | ||
name.set("Apache-2.0") | ||
} | ||
} | ||
} | ||
} | ||
|
||
signing { | ||
val signingKeyId = System.getenv("GPG_SIGNING_KEY_ID")?.ifBlank { null } | ||
val signingKey = System.getenv("GPG_SIGNING_KEY")?.ifBlank { null } | ||
val signingPassword = System.getenv("GPG_SIGNING_PASSWORD")?.ifBlank { null } | ||
if (signingKey != null && signingPassword != null) { | ||
useInMemoryPgpKeys( | ||
signingKeyId, | ||
signingKey, | ||
signingPassword, | ||
) | ||
sign(publishing.publications["maven"]) | ||
} | ||
} | ||
developers { | ||
developer { | ||
name.set("Prelude") | ||
email.set("[email protected]") | ||
} | ||
} | ||
|
||
tasks.named("publish") { | ||
dependsOn(":closeAndReleaseSonatypeStagingRepository") | ||
scm { | ||
connection.set("scm:git:git://github.com/prelude-so/java-sdk.git") | ||
developerConnection.set("scm:git:git://github.com/prelude-so/java-sdk.git") | ||
url.set("https://github.com/prelude-so/java-sdk") | ||
} | ||
} | ||
} |