Skip to content

Commit

Permalink
Release 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben McCann committed Apr 16, 2015
1 parent 32c6fe1 commit 3771ddc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The library is available from the Central Maven Repository and can be used easil
<dependency>
<groupId>com.connectifier.xero</groupId>
<artifactId>client</artifactId>
<version>0.12</version>
<version>0.13</version>
</dependency>

## Example Usage
Expand Down
6 changes: 4 additions & 2 deletions client/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

organization := "com.connectifier.xero"
name := "client"
version := "0.12"
version := "0.13"

// Java. Not Scala
crossPaths := false
autoScalaLibrary := false
javacOptions in (Compile, compile) ++= Seq("-source", "1.7", "-target", "1.7")
javacOptions in (doc) ++= Seq("-source", "1.7", "-Xdoclint:none")

// XJC-plugin settings
sources in (Compile, xjc) += baseDirectory.value / ".." / ".." / "XeroAPI-Schemas" / "v2.00"
Expand All @@ -31,7 +33,7 @@ libraryDependencies ++= Seq(
EclipseKeys.projectFlavor := EclipseProjectFlavor.Java
EclipseKeys.withSource := true

// Publishing to Maven Central
// Publish to Maven Central with publishSigned task
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
Expand Down
2 changes: 1 addition & 1 deletion client/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.7
sbt.version=0.13.8
6 changes: 4 additions & 2 deletions client/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0-RC1")

addSbtPlugin("org.scala-sbt.plugins" % "sbt-xjc" % "0.7")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0-RC1")
2 changes: 1 addition & 1 deletion xjc-plugin/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.7
sbt.version=0.13.8

0 comments on commit 3771ddc

Please sign in to comment.