Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
version 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuhiro Sera committed Nov 12, 2015
1 parent d429693 commit 8b3633d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,6 +1,5 @@
language: scala
scala:
- 2.11.5
- 2.10.4
- 2.11.7
- 2.10.6
script: "sbt ++$TRAVIS_SCALA_VERSION test:compile"

6 changes: 3 additions & 3 deletions project/Build.scala
Expand Up @@ -3,14 +3,14 @@ import Keys._

object AwscalaProject extends Build {

lazy val awsJavaSdkVersion = "1.10.26"
lazy val awsJavaSdkVersion = "1.10.33"

lazy val root = Project("root", file("."), settings = mainSettings)

lazy val mainSettings = Seq(
organization := "com.github.seratch",
name := "awscala",
version := "0.5.5-SNAPSHOT",
version := "0.5.5",
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.11.7", "2.10.6"),
publishMavenStyle := true,
Expand All @@ -25,7 +25,7 @@ object AwscalaProject extends Build {
"com.amazonaws" % "aws-java-sdk-redshift" % awsJavaSdkVersion,
"com.amazonaws" % "aws-java-sdk-dynamodb" % awsJavaSdkVersion,
"com.amazonaws" % "aws-java-sdk-simpledb" % awsJavaSdkVersion,
"joda-time" % "joda-time" % "2.8.2",
"joda-time" % "joda-time" % "2.9",
"org.joda" % "joda-convert" % "1.8.1",
"com.decodified" %% "scala-ssh" % "0.7.0" % "provided",
"org.bouncycastle" % "bcprov-jdk16" % "1.46" % "provided",
Expand Down
1 change: 0 additions & 1 deletion project/plugins.sbt
Expand Up @@ -4,4 +4,3 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.5.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")

0 comments on commit 8b3633d

Please sign in to comment.