Skip to content

Commit

Permalink
Merge pull request #41 from embulk/ready-for-maven-central-with-nomin…
Browse files Browse the repository at this point in the history
…ating-developers

Get ready for Maven Central with nominating developers
  • Loading branch information
dmikurube authored Jul 5, 2022
2 parents 63fed83 + 2a23c97 commit ab65dbb
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,30 @@ publishing {
}

developers {
developer {
name = "Sadayuki Furuhashi"
email = "[email protected]"
}
developer {
name = "Muga Nishizawa"
email = "[email protected]"
}
developer {
name = "Satoshi Akama"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
developer {
name = "Shinichi Ishimura"
email = "[email protected]"
}
developer {
name = "Phu Nguyen"
email = "[email protected]"
}
}

scm {
Expand All @@ -129,7 +153,19 @@ publishing {
}

repositories {
// It is not ready to release into Maven Central while FTP4J:1.7.2 is not available in Maven Central.
maven { // publishMavenPublicationToMavenCentralRepository
name = "mavenCentral"
if (project.version.endsWith("-SNAPSHOT")) {
url "https://oss.sonatype.org/content/repositories/snapshots"
} else {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
}

credentials {
username = project.hasProperty("ossrhUsername") ? ossrhUsername : ""
password = project.hasProperty("ossrhPassword") ? ossrhPassword : ""
}
}
}
}

Expand Down

0 comments on commit ab65dbb

Please sign in to comment.