-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update group id to com.github.flank (#720)
* Update group id to com.github.flank * Update POM
- Loading branch information
1 parent
75c5f76
commit b911f4c
Showing
4 changed files
with
49 additions
and
9 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 |
---|---|---|
|
@@ -6,18 +6,15 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | |
import java.util.Date | ||
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar | ||
|
||
group = "test_runner" | ||
version = "SNAPSHOT" | ||
|
||
plugins { | ||
application | ||
jacoco | ||
kotlin("jvm") version Versions.KOTLIN | ||
|
||
id("io.gitlab.arturbosch.detekt") version Versions.DETEKT | ||
id("com.jfrog.bintray") version "1.8.4" | ||
id("com.jfrog.bintray") version Versions.BINTRAY | ||
id("maven-publish") | ||
id("com.github.johnrengelman.shadow") version "5.2.0" | ||
id("com.github.johnrengelman.shadow") version Versions.SHADOW | ||
} | ||
|
||
val artifactID = "flank" | ||
|
@@ -54,14 +51,48 @@ bintray { | |
}) | ||
} | ||
|
||
java { | ||
withJavadocJar() | ||
withSourcesJar() | ||
} | ||
|
||
publishing { | ||
publications { | ||
register("mavenJava", MavenPublication::class) { | ||
groupId = "flank" | ||
artifactId = "flank" | ||
create<MavenPublication>("mavenJava") { | ||
groupId = "com.github.flank" | ||
artifactId = artifactID | ||
version = System.getenv("MVN_VERSION") | ||
|
||
artifact(shadowJar) | ||
artifact(tasks["javadocJar"]) | ||
artifact(tasks["sourcesJar"]) | ||
|
||
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("[email protected]") | ||
} | ||
} | ||
|
||
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 | ||
|
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,2 +1,4 @@ | ||
rootProject.name = "flank" | ||
|
||
include(":test_api") | ||
project(":test_api").projectDir = File(rootProject.projectDir, "../firebase_apis/test_api") |