forked from bmc/sbt-izpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
60 lines (37 loc) · 1.58 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// ---------------------------------------------------------------------------
// SBT 0.10.x Build File for SBT IzPack Plugin
//
// Copyright (c) 2010-2011 Brian M. Clapper
//
// See accompanying license file for license information.
// ---------------------------------------------------------------------------
import bintray.Keys._
// ---------------------------------------------------------------------------
// Basic settings
name := "sbt-izpack"
version := "1.0.3"
sbtPlugin := true
organization := "com.github.dapeca"
licenses += ("BSD New", url("https://github.com/bmc/sbt-izpack/blob/master/LICENSE.md"))
description := "SBT plugin to generate an IzPack installer"
// ---------------------------------------------------------------------------
// Additional compiler options and plugins
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")
crossScalaVersions := Seq("2.10.4")
seq(lsSettings :_*)
(LsKeys.tags in LsKeys.lsync) := Seq("izpack", "installer")
(description in LsKeys.lsync) <<= description(d => d)
// ---------------------------------------------------------------------------
// Other dependendencies
// External deps
libraryDependencies ++= Seq(
"org.codehaus.izpack" % "izpack-standalone-compiler" % "4.3.5" % "compile",
"org.yaml" % "snakeyaml" % "1.14"
)
libraryDependencies += "org.clapper" %% "grizzled-scala" % "1.3"
// ---------------------------------------------------------------------------
// Publishing criteria
publishMavenStyle := false
bintrayPublishSettings
repository in bintray := "sbt-plugins"
bintrayOrganization in bintray := None