Skip to content

Commit

Permalink
re-activated checksums so artifacts can be published to sonatype OSS,…
Browse files Browse the repository at this point in the history
… removed some scala versions to speed up crossbuild
  • Loading branch information
chenkelmann committed Aug 12, 2012
1 parent afd5e41 commit 4c1ea04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -22,7 +22,7 @@ Actuarius tries to stay as close to the original Markdown syntax definition as p
The group id is `eu.henkelmann`, the artifact id is `actuarius_[scala-version]`, e.g.`actuarius_2.9.2`. The current stable version is 0.2.4. The current development version is 0.2.5-SNAPSHOT.
Actuarius is available from the [Sonatype OSS repository](https://oss.sonatype.org), so you should not have to add any repository definitions.

Starting with version 0.2.4 there are builds for Scala 2.9.2, 2.9.1-1, 2.9.1, 2.9.0-1, 2.9.0, 2.8.1, 2.8.2
Starting with version 0.2.4 there are builds for Scala 2.9.2, 2.9.1, 2.9.0-1, 2.8.1, 2.8.2
(How I hate Scala's binary incompatibilities…)

##sbt##
Expand All @@ -35,6 +35,7 @@ Currently, Actuarius itself is built using sbt 0.11.x
##Version History##

###0.2.4###
* artifacts are published via Sonatype OSS repository
* added support for scala 2.9.2
* switched to sbt 11.x as build system (thanks to David Pollack for the build file)
* added initial support for fenced code blocks (hint for programming language to format in is parsed but ignored)
Expand Down
4 changes: 1 addition & 3 deletions build.sbt
Expand Up @@ -11,8 +11,6 @@ publishMavenStyle := true

autoCompilerPlugins := true

checksums := Nil

organization := "eu.henkelmann"

resolvers += "Scala Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
Expand All @@ -21,7 +19,7 @@ resolvers += "Scala" at "https://oss.sonatype.org/content/groups/scala-tools/"

version := "0.2.4"

crossScalaVersions in ThisBuild := Seq("2.9.2", "2.9.1-1", "2.9.1", "2.9.0-1", "2.9.0", "2.8.1", "2.8.2")
crossScalaVersions in ThisBuild := Seq("2.9.2", "2.9.1", "2.9.0-1", "2.8.1", "2.8.2")

libraryDependencies ++= {
Seq(
Expand Down

0 comments on commit 4c1ea04

Please sign in to comment.