Skip to content

Commit

Permalink
SDK regeneration (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
  • Loading branch information
fern-api[bot] authored Jan 6, 2025
1 parent acdae61 commit 331dbf1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,21 @@ java {
}


group = 'schematichq'
group = 'com.schematichq'

version = '1.1.0'

jar {
dependsOn(":generatePomFileForMavenPublication")
archiveBaseName = "schematichq-java"
archiveBaseName = "schematic-java"
}

sourcesJar {
archiveBaseName = "schematichq-java"
archiveBaseName = "schematic-java"
}

javadocJar {
archiveBaseName = "schematichq-java"
archiveBaseName = "schematic-java"
}

signing {
Expand All @@ -77,8 +77,8 @@ test {
publishing {
publications {
maven(MavenPublication) {
groupId = 'schematichq'
artifactId = 'schematichq-java'
groupId = 'com.schematichq'
artifactId = 'schematic-java'
version = '1.1.0'
from components.java
pom {
Expand Down Expand Up @@ -112,9 +112,9 @@ sonatypeCentralUpload {
password = "$System.env.MAVEN_PASSWORD"

archives = files(
"$buildDir/libs/schematichq-java-" + version + ".jar",
"$buildDir/libs/schematichq-java-" + version + "-sources.jar",
"$buildDir/libs/schematichq-java-" + version + "-javadoc.jar"
"$buildDir/libs/schematic-java-" + version + ".jar",
"$buildDir/libs/schematic-java-" + version + "-sources.jar",
"$buildDir/libs/schematic-java-" + version + "-javadoc.jar"
)

pom = file("$buildDir/publications/maven/pom-default.xml")
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rootProject.name = 'schematichq-java'
rootProject.name = 'schematic-java'

include 'sample-app'

0 comments on commit 331dbf1

Please sign in to comment.