-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
organization in ThisBuild := "com.github.roti" | ||
version in ThisBuild := "0.5-SNAPSHOT" | ||
version in ThisBuild := "0.5" | ||
|
||
intellijBuild in ThisBuild := "193.6494.35" | ||
intellijPluginName in ThisBuild := "lut-intellij-support" | ||
|
@@ -42,12 +42,35 @@ lazy val intellijSupport = project.in(file("intellij-support")).settings( | |
onLoad in Global := (onLoad in Global).value andThen { s: State => "project library" :: s } | ||
|
||
publishMavenStyle in ThisBuild := true | ||
credentials in ThisBuild += Credentials(Path.userHome / ".sbt" / ".credentials") | ||
credentials in ThisBuild += Credentials(Path.userHome / ".sonatype_credentials") | ||
|
||
publishTo in ThisBuild := { | ||
val nexus = "https://oss.sonatype.org/" | ||
if (isSnapshot.value) | ||
Some("snapshots" at nexus + "content/repositories/snapshots") | ||
else | ||
Some("releases" at nexus + "service/local/staging/deploy/maven2") | ||
} | ||
} | ||
|
||
|
||
scmInfo in ThisBuild := Some( | ||
ScmInfo( | ||
url("https://github.com/roti/lut"), | ||
"scm:[email protected]:roti/lut.git" | ||
) | ||
) | ||
|
||
developers in ThisBuild := List( | ||
Developer( | ||
id = "roti", | ||
name = "Răzvan Rotaru", | ||
email = "[email protected]", | ||
url = url("https://github.com/roti") | ||
) | ||
) | ||
|
||
description in ThisBuild := "A library for data modelling in Scala" | ||
licenses in ThisBuild := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) | ||
homepage in ThisBuild := Some(url("https://github.com/roti/lut")) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.5.0") | ||
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.5.0") | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1") |