forked from timo-schmid/sbt-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
27 lines (24 loc) · 947 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
import sbt.Keys.licenses
lazy val plugin = (project in file("sbt-plugin"))
.settings(
sbtPlugin := true,
name := "sbt-i18n",
description := "A typesafe i18n generator for sbt",
organization := "ch.timo-schmid",
libraryDependencies += "org.tpolecat" %% "atto-core" % "0.5.2",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := true,
publishTo := Some("Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")
)
/*
lazy val demo = (project in file("demo"))
.settings(
name := "sbt-i18n-demo",
description := "A typesafe i18n generator for sbt",
organization := "ch.timo-schmid",
i18nPackageName := "demo.i18n",
libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.9" % "test",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
)
.enablePlugins(I18nPlugin)
*/