diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-28 11:26:57 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-28 12:05:32 +0100 |
commit | 620c1896f5f4915b885f1fafb83e51eb97afc21a (patch) | |
tree | 933281b33fc705bdaf8fab84facafd5cbd4db4c8 | |
parent | b760cb6c2fc2cd7955bf481e0045da457959bc4c (diff) |
Add sbt-bintray plugin.
-rw-r--r-- | build.sbt | 2 | ||||
-rw-r--r-- | project/bintray.sbt | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -11,6 +11,8 @@ inThisBuild(Seq( scalacOptions ++= Seq( "-deprecation", ), + + licenses += ("AGPL-V3", url("https://www.gnu.org/licenses/agpl-3.0.html")) )) lazy val core = (project in file("core")) diff --git a/project/bintray.sbt b/project/bintray.sbt new file mode 100644 index 0000000..e674f39 --- /dev/null +++ b/project/bintray.sbt @@ -0,0 +1 @@ +addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.2") |