-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sbt
30 lines (17 loc) · 818 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
30
name := "sbt-vaadin-plugin"
description := "Vaadin Plugin for sbt"
version := "1.3-SNAPSHOT"
organization := "org.vaadin.sbt"
sbtPlugin := true
sbtVersion in Global := "0.13.9"
scalaVersion in Global := "2.10.6"
scalariformSettings
// sbt -Dsbt-vaadin-plugin.repository.path=../henrikerola.github.io/repository/releases publish
publishTo := Some(Resolver.file("GitHub", file(Option(System.getProperty("sbt-vaadin-plugin.repository.path")).getOrElse("../henrikerola.github.io/repository/snapshots"))))
vaadinSettings
packageOptions in (Compile, packageBin) <+= org.vaadin.sbt.tasks.AddOnJarManifestTask.addOnJarManifestTask
ScriptedPlugin.scriptedSettings
scriptedBufferLog := false
scriptedLaunchOpts := { scriptedLaunchOpts.value ++
Seq("-Dplugin.version=" + version.value, "-Dvaadin.version=7.5.7")
}