Skip to content

Commit

Permalink
#12
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkorzekwa committed Mar 3, 2015
1 parent 537e376 commit 5c05aab
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 122 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
# intellij idea
*.iml
.idea
/bin/
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val root = (project in file(".")).
settings(
name := "bayes-scala",
organization := "dk.bayes",
organization := "com.github.danielkorzekwa",
version := "0.5-SNAPSHOT",
scalaVersion := "2.10.4",
scalacOptions ++= Seq(
Expand Down
121 changes: 0 additions & 121 deletions pom.xml

This file was deleted.

32 changes: 32 additions & 0 deletions publish.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
publishMavenStyle := true

pomIncludeRepository := { _ => false }

publishTo := {
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")
}

pomExtra := (
<url>https://github.com/danielkorzekwa/bayes-scala</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:danielkorzekwa/bayes-scala.git</url>
<connection>scm:git:git@github.com:danielkorzekwa/bayes-scala.git.git</connection>
</scm>
<developers>
<developer>
<id>danielkorzekwa</id>
<name>Daniel Korzekwa</name>
<url>https://github.com/danielkorzekwa</url>
</developer>
</developers>)

0 comments on commit 5c05aab

Please sign in to comment.