forked from saeta/sbt-avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (23 loc) · 876 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
23
24
25
26
27
28
29
name := "sbt-avro-1.7"
organization := "com.cavorite"
description := "Sbt plugin for compiling Avro sources"
version := "1.1.3-SNAPSHOT"
sbtPlugin := true
scalaVersion := appConfiguration.value.provider.scalaProvider.version
scalacOptions in Compile ++= Seq("-deprecation")
libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % "1.7.7",
"org.apache.avro" % "avro-compiler" % "1.7.7",
"org.specs2" %% "specs2-core" % "3.6.4" % "test"
)
licenses += ("BSD 3-Clause", url("https://github.com/sbt/sbt-avro/blob/master/LICENSE"))
publishMavenStyle := false
bintrayOrganization := Some("sbt")
bintrayRepository := "sbt-plugin-releases"
bintrayPackage := name.value
bintrayReleaseOnPublish := false
ScriptedPlugin.scriptedSettings
scriptedLaunchOpts := { scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
}
scriptedBufferLog := false