Skip to content

Commit

Permalink
feat: add silent option
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarkhwar committed Apr 30, 2024
1 parent 4c20c02 commit 3fd1c37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ThisBuild / organization := "org.galaxio"
ThisBuild / organizationName := "Galaxio Team"
ThisBuild / organizationHomepage := Some(url("https://github.com/galax-io"))

ThisBuild / homepage := Some(url("https://github.com/galax-io/gatling-kafka-plugin"))
ThisBuild / scmInfo := Some(
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",
Expand All @@ -22,7 +22,7 @@ ThisBuild / developers := List(

// Remove all additional repository other than Maven Central from POM
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishTo := {
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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import org.galaxio.gatling.kafka.request.builder.Avro4sAttributes
import scala.jdk.CollectionConverters._
import scala.reflect.ClassTag

case class KafkaRequestAvro4sActionBuilder[K: ClassTag, V: ClassTag](attributes: Avro4sAttributes[K, V]) extends ActionBuilder with NameGen {
case class KafkaRequestAvro4sActionBuilder[K: ClassTag, V: ClassTag](attributes: Avro4sAttributes[K, V])
extends ActionBuilder with NameGen {

override def build(ctx: ScenarioContext, next: Action): Action = {
import ctx._
Expand Down

0 comments on commit 3fd1c37

Please sign in to comment.