-
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.
feat(api): update via SDK Studio (#27)
- Loading branch information
1 parent
b400902
commit 783be8b
Showing
6 changed files
with
46 additions
and
70 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,10 @@ | ||
plugins { | ||
id("io.github.gradle-nexus.publish-plugin") version "1.1.0" | ||
|
||
} | ||
|
||
allprojects { | ||
group = "com.braintrustdata.api" | ||
version = "0.4.0" // 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
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 |
---|---|---|
|
@@ -3,65 +3,52 @@ import org.gradle.api.publish.maven.MavenPublication | |
import org.gradle.kotlin.dsl.configure | ||
import org.gradle.kotlin.dsl.register | ||
import org.gradle.kotlin.dsl.get | ||
import com.vanniktech.maven.publish.JavaLibrary | ||
import com.vanniktech.maven.publish.JavadocJar | ||
import com.vanniktech.maven.publish.MavenPublishBaseExtension | ||
import com.vanniktech.maven.publish.SonatypeHost | ||
|
||
plugins { | ||
`maven-publish` | ||
`signing` | ||
id("com.vanniktech.maven.publish") | ||
} | ||
|
||
configure<PublishingExtension> { | ||
publications { | ||
register<MavenPublication>("maven") { | ||
from(components["java"]) | ||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} | ||
|
||
pom { | ||
name.set("Braintrust Data API") | ||
description.set("API specification for the backend data server. The API is hosted globally at\nhttps://api.braintrustdata.com or in your own environment. The v1 API is\ncurrently in preview mode and unstable until June 1, 2024. We may make backwards\nincompatible changes before then, as we learn from our users.") | ||
url.set("https://www.braintrustdata.com/docs/api/spec") | ||
extra["signingInMemoryKey"] = System.getenv("GPG_SIGNING_KEY") | ||
extra["signingInMemoryKeyId"] = System.getenv("GPG_SIGNING_KEY_ID") | ||
extra["signingInMemoryKeyPassword"] = System.getenv("GPG_SIGNING_PASSWORD") | ||
|
||
licenses { | ||
license { | ||
name.set("Apache-2.0") | ||
} | ||
} | ||
configure<MavenPublishBaseExtension> { | ||
signAllPublications() | ||
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) | ||
|
||
developers { | ||
developer { | ||
name.set("Braintrust") | ||
email.set("[email protected]") | ||
} | ||
} | ||
this.coordinates(project.group.toString(), project.name, project.version.toString()) | ||
|
||
scm { | ||
connection.set("scm:git:git://github.com/braintrustdata/braintrust-java.git") | ||
developerConnection.set("scm:git:git://github.com/braintrustdata/braintrust-java.git") | ||
url.set("https://github.com/braintrustdata/braintrust-java") | ||
} | ||
pom { | ||
name.set("Braintrust Data API") | ||
description.set("API specification for the backend data server. The API is hosted globally at\nhttps://api.braintrustdata.com or in your own environment. The v1 API is\ncurrently in preview mode and unstable until June 1, 2024. We may make backwards\nincompatible changes before then, as we learn from our users.") | ||
url.set("https://www.braintrustdata.com/docs/api/spec") | ||
|
||
versionMapping { | ||
allVariants { | ||
fromResolutionResult() | ||
} | ||
} | ||
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("Braintrust") | ||
email.set("[email protected]") | ||
} | ||
} | ||
|
||
tasks.named("publish") { | ||
dependsOn(":closeAndReleaseSonatypeStagingRepository") | ||
scm { | ||
connection.set("scm:git:git://github.com/braintrustdata/braintrust-java.git") | ||
developerConnection.set("scm:git:git://github.com/braintrustdata/braintrust-java.git") | ||
url.set("https://github.com/braintrustdata/braintrust-java") | ||
} | ||
} | ||
} |