Skip to content

Commit

Permalink
bumping up to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Aug 26, 2013
1 parent 0e1ca96 commit dd34c40
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ There are currently four ways of running scalaxb:

To call scalaxb from sbt 0.12.x, put this in your `project/plugins.sbt`:

resolvers ++= Seq(
"sonatype-public" at "https://oss.sonatype.org/content/groups/public")
resolvers += Resolver.sonatypeRepo("public")

addSbtPlugin("org.scalaxb" % "sbt-scalaxb" % "X.X")

Expand Down
13 changes: 8 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import Dependencies._
import Common._

val commonSettings = Seq(
version := "1.1.2-SNAPSHOT",
version := "1.1.2",
organization := "org.scalaxb",
homepage := Some(url("http://scalaxb.org")),
homepage := Some(url("http://scalaxb.org")),
licenses := Seq("MIT License" -> url("https://github.com/eed3si9n/scalaxb/blob/master/LICENSE")),
description := """scalaxb is an XML data-binding tool for Scala that supports W3C XML Schema (xsd) and wsdl.""",
scalaVersion := "2.10.2",
Expand All @@ -25,15 +25,18 @@ val integration = Project("integration", file("integration")).
settings(commonSettings: _*).
settings(
publishArtifact := false,
libraryDependencies ++= integrationDependencies(scalaVersion.value)
libraryDependencies <<= scalaVersion(integrationDependencies)
// fork in test := true,
// javaOptions in test ++= Seq("-Xmx2G", "-XX:MaxPermSize=512M")
).
dependsOn(app)

val scalaxbPlugin = Project("sbt-scalaxb", file("sbt-scalaxb")).
settings(commonSettings: _*).
settings(
sbtPlugin := true,
description := """sbt plugin to run scalaxb"""
description := """sbt plugin to run scalaxb""",
sbtVersion in Global := "0.12.4",
scalaVersion in Global := "2.9.2"
).
dependsOn(app)

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.0-RC3
sbt.version=0.13.0

0 comments on commit dd34c40

Please sign in to comment.