Skip to content

Commit

Permalink
Updated: build.sbt - developer and project info
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lee committed Nov 10, 2019
1 parent bf47e69 commit 9b71c26
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions build.sbt
Expand Up @@ -4,19 +4,28 @@ val testosteroneVersion = "0.0.7"
val junitJupiterVersion = "5.5.0"


ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := ProjectVersion
ThisBuild / organization := "io.kevinlee"
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := ProjectVersion
ThisBuild / organization := "io.kevinlee"
ThisBuild / developers := List(
Developer(
"Kevin-Lee", "Kevin Lee"
, "kevin.code@kevinlee.io"
, url("https://github.com/Kevin-Lee")
))
ThisBuild / homepage := Some(url("https://github.com/Kevin-Lee/j8plus"))
ThisBuild / scmInfo := Some(ScmInfo(
url("https://github.com/Kevin-Lee/j8plus")
, "git@github.com:Kevin-Lee/j8plus.git"
))

lazy val j8plus = (project in file("."))
.settings(
name := "j8plus"
)
.enablePlugins(DevOopsJavaPlugin)
.enablePlugins(DevOopsGitReleasePlugin)
.enablePlugins(JacocoCoverallsPlugin)
.settings(
javacOptions := Seq(
name := "j8plus"
, javacOptions := Seq(
"-source", javaVersion.value
, "-encoding", "UTF-8"
)
Expand All @@ -28,19 +37,18 @@ lazy val j8plus = (project in file("."))
)
, javacOptions in (Compile, test) := (javacOptions in (Compile, compile)).value
, resolvers ++= List(
Resolver.jcenterRepo,
"kevin-public-releases" at "https://repo.kevinlee.io/repository/kevin-public-releases",
"kevin-public-snapshots" at "https://repo.kevinlee.io/repository/kevin-public-snapshots",
"kevin-bintray" at "https://dl.bintray.com/kevinlee/maven"
Resolver.jcenterRepo
, "kevin-public-releases" at "https://repo.kevinlee.io/repository/kevin-public-releases"
, "kevin-public-snapshots" at "https://repo.kevinlee.io/repository/kevin-public-snapshots"
, "kevin-bintray" at "https://dl.bintray.com/kevinlee/maven"
)
, libraryDependencies ++= List(
"org.junit.jupiter" % "junit-jupiter" % junitJupiterVersion % Test,
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
"kevinlee" % "test0ster1" % s"${testosteroneVersion}" % Test,
"org.assertj" % "assertj-core" % "3.12.2" % Test,
"org.mockito" % "mockito-core" % "3.0.0" % Test,
"org.elixirian" % "kommonlee-test" % "0.0.18-SNAPSHOT" % Test

"org.junit.jupiter" % "junit-jupiter" % junitJupiterVersion % Test
, "net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test
, "kevinlee" % "test0ster1" % s"${testosteroneVersion}" % Test
, "org.assertj" % "assertj-core" % "3.12.2" % Test
, "org.mockito" % "mockito-core" % "3.0.0" % Test
, "org.elixirian" % "kommonlee-test" % "0.0.18-SNAPSHOT" % Test
)
, testOptions += Tests.Argument(TestFrameworks.JUnit, "-a")

Expand Down

0 comments on commit 9b71c26

Please sign in to comment.