From 40033d1d73930643af166f8063a08361a12c58cf Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Sat, 18 Apr 2020 17:18:37 -0700 Subject: [PATCH 1/2] Update group id to com.github.flank --- release_notes.md | 1 + test_runner/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index 54b52238b2..a339102fd2 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,4 +1,5 @@ ## next (unreleased) +- [#720](https://github.com/Flank/flank/pull/720) Update group id from `flank` to `com.github.flank` ([bootstraponline](https://github.com/bootstraponline)) - [#714](https://github.com/Flank/flank/pull/714) Add support for num-uniform-shards option. ([jan-gogo](https://github.com/jan-gogo)) - [#712](https://github.com/Flank/flank/pull/712) Add keep file path for ios. ([pawelpasterz](https://github.com/pawelpasterz)) - [#711](https://github.com/Flank/flank/pull/711) Remove hardcoded height. ([pawelpasterz](https://github.com/pawelpasterz)) diff --git a/test_runner/build.gradle.kts b/test_runner/build.gradle.kts index 5fedd688e9..955e68550d 100644 --- a/test_runner/build.gradle.kts +++ b/test_runner/build.gradle.kts @@ -57,7 +57,7 @@ bintray { publishing { publications { register("mavenJava", MavenPublication::class) { - groupId = "flank" + groupId = "com.github.flank" artifactId = "flank" version = System.getenv("MVN_VERSION") From b528d93599a85bf2e70df67d342541bc53fe2188 Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Sat, 18 Apr 2020 18:20:34 -0700 Subject: [PATCH 2/2] Update POM --- test_runner/build.gradle.kts | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/test_runner/build.gradle.kts b/test_runner/build.gradle.kts index 955e68550d..282b385681 100644 --- a/test_runner/build.gradle.kts +++ b/test_runner/build.gradle.kts @@ -56,13 +56,40 @@ bintray { publishing { publications { - register("mavenJava", MavenPublication::class) { + create("mavenJava") { groupId = "com.github.flank" artifactId = "flank" version = System.getenv("MVN_VERSION") artifact(shadowJar) + pom { + name.set("Flank") + description.set("Massively parallel Android and iOS test runner for Firebase Test Lab") + url.set("https://github.com/flank/flank") + + licenses { + license { + name.set("The Apache License, Version 2.0") + url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") + } + } + + developers { + developer { + id.set("bootstraponline") + name.set("bootstrap online") + email.set("code@bootstraponline.com") + } + } + + scm { + connection.set("scm:git:git://github.com/flank/flank.git") + developerConnection.set("scm:git:ssh://github.com:flank/flank.git") + url.set("https://github.com/flank/flank") + } + } + pom.withXml { // Remove deps since we're publishing a fat jar val pom = asNode()