Skip to content

Commit

Permalink
Add publish in spi build.gradle
Browse files Browse the repository at this point in the history
Signed-off-by: bowenlan-amzn <[email protected]>
  • Loading branch information
bowenlan-amzn committed Jul 17, 2024
1 parent dbd2bc2 commit 9035634
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions spi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'org.jetbrains.kotlin.plugin.allopen'
apply plugin: 'idea'
apply plugin: 'maven-publish'

ext {
projectSubstitutions = [:]
Expand Down Expand Up @@ -83,6 +84,11 @@ tasks.register("sourcesJar", Jar) {
from sourceSets.main.allSource
}

task javadocJar(type: Jar) {
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}

test {
doFirst {
test.classpath -= project.files(project.tasks.named('shadowJar'))
Expand All @@ -103,3 +109,57 @@ check.dependsOn integTest
testClusters.javaRestTest {
testDistribution = 'INTEG_TEST'
}

publishing {
repositories {
maven {
name = 'staging'
url = "${rootProject.buildDir}/local-staging-repo"
}
maven {
name = "Snapshots"
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
credentials {
username "$System.env.SONATYPE_USERNAME"
password "$System.env.SONATYPE_PASSWORD"
}
}
}
publications {
shadow(MavenPublication) {
project.shadow.component(it)
groupId = 'org.opensearch.opensearch-index-management'
artifactId = 'opensearch-index-management-spi'

artifact sourcesJar
artifact javadocJar

pom {
name = "OpenSearch Index Management SPI"
packaging = "jar"
url = "https://github.com/opensearch-project/index-management"
description = "OpenSearch Index Management SPI"
scm {
connection = "scm:[email protected]:opensearch-project/index-management.git"
developerConnection = "scm:[email protected]:opensearch-project/index-management.git"
url = "[email protected]:opensearch-project/index-management.git"
}
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
name = "OpenSearch"
url = "https://github.com/opensearch-project/index-management"
}
}
}
}
}

gradle.startParameter.setShowStacktrace(ShowStacktrace.ALWAYS)
gradle.startParameter.setLogLevel(LogLevel.DEBUG)
}

0 comments on commit 9035634

Please sign in to comment.