-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (20 loc) · 1 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
sbtPlugin := true
name := """sbt-fileupload"""
organization := "com.github.crossroad0201"
description := "A simple sbt plugin for file upload to any destination."
version := "0.1.1"
scalacOptions ++= Seq("-feature", "-deprecation")
// ^ publish
crossSbtVersions := Seq("0.13.6", "1.0.0")
libraryDependencies += "com.amazonaws" % "aws-java-sdk-s3" % "1.11.292"
libraryDependencies += "io.github.azagniotov" % "ant-style-path-matcher" % "1.0.0"
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.1" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % Test
publishMavenStyle := false
bintrayPackageLabels := Seq("sbt","plugin")
bintrayVcsUrl := Some("""[email protected]:crossroad0201/sbt-fileupload.git""")
bintrayRepository := "sbt-plugins"
bintrayOrganization in bintray := None
licenses += ("MIT", url("https://opensource.org/licenses/mit-license.php"))
initialCommands in console := """import fileupload._"""
scriptedLaunchOpts ++= Seq("-Xmx1024M", "-Dplugin.version=" + version.value)