-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3b8f6f
commit b7d75c1
Showing
3 changed files
with
20 additions
and
7 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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
ThisBuild / organization := "org.galaxio" | ||
ThisBuild / scmInfo := Some( | ||
ThisBuild / versionScheme := Some("semver-spec") | ||
ThisBuild / organization := "org.galaxio" | ||
ThisBuild / organizationName := "Galaxio Team" | ||
ThisBuild / organizationHomepage := Some(url("https://github.com/galax-io")) | ||
ThisBuild / description := "Plugin to support kafka performance testing in Gatling." | ||
ThisBuild / homepage := Some(url("https://github.com/galax-io/gatling-kafka-plugin")) | ||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/galax-io/gatling-kafka-plugin"), | ||
"[email protected]:galax-io/gatling-kafka-plugin.git", | ||
|
@@ -10,11 +15,19 @@ ThisBuild / developers := List( | |
Developer( | ||
id = "jigarkhwar", | ||
name = "Ioann Akhaltsev", | ||
email = "none", | ||
email = "[email protected]", | ||
url = url("https://github.com/jigarkhwar"), | ||
), | ||
) | ||
|
||
ThisBuild / description := "Plugin to support kafka performance testing in Gatling(3.9.x)." | ||
// Remove all additional repository other than Maven Central from POM | ||
ThisBuild / publishTo := { | ||
val nexus = "https://s01.oss.sonatype.org/" | ||
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") | ||
else Some("releases" at nexus + "service/local/staging/deploy/maven2") | ||
} | ||
|
||
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" | ||
sonatypeRepository := "https://s01.oss.sonatype.org/service/local" | ||
|
||
ThisBuild / licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")) | ||
ThisBuild / homepage := Some(url("https://github.com/galax-io/gatling-kafka-plugin")) |
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