Skip to content

Commit

Permalink
Release v0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
roti committed Aug 9, 2020
1 parent c7869d1 commit eb64bb9
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This way it looks and behaves like a normal class, with statically declared data
### Dependency

```scala
libraryDependencies += "com.github.roti" %% "lut" % "0.5-SNAPSHOT"
libraryDependencies += "com.github.roti" %% "lut" % "0.5"
```

### Scala Versions
Expand Down
29 changes: 26 additions & 3 deletions build.sbt
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"
Expand Down Expand Up @@ -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"))


3 changes: 2 additions & 1 deletion project/plugins.sbt
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")

0 comments on commit eb64bb9

Please sign in to comment.