-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
32 lines (26 loc) · 813 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
31
32
inThisBuild(
List(
organization := "com.thesamet",
homepage := Some(url("https://github.com/thesamet/sbt-protoc-gen-project")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
developers := List(
Developer(
"thesamet",
"Nadav Samet",
"thesamet@gmail.com",
url("https://www.thesamet.com")
)
)
)
)
name := """sbt-protoc-gen-project"""
sbtPlugin := true
console / initialCommands := """import sbtprotocgenproject._"""
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.4")
enablePlugins(ScriptedPlugin)
// set up 'scripted; sbt plugin for testing sbt plugins
scriptedLaunchOpts ++=
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)