-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
23 lines (16 loc) · 826 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// @formatter:off
sbtPlugin := true
name := "sbt-install4j"
organization := "com.github.jpsacha"
version := "1.5.0.1-SNAPSHOT"
homepage := Some(url("https://github.com/jpsacha/sbt-install4j"))
organizationHomepage := Some(url("https://github.com/jpsacha"))
startYear := Some(2014)
licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html"))
description := "SBT plugin for building installers with Install4J."
scalaVersion := "2.12.17"
scalacOptions := Seq("-deprecation", "-unchecked", "-Xsource:3")
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.15" % "test"
Test / packageBin / publishArtifact := false
Test / packageDoc / publishArtifact := false
Test / packageSrc / publishArtifact := false