Skip to content

Commit 76a9f87

Browse files
committed
add CommandRunner
1 parent 8a0c5b1 commit 76a9f87

File tree

7 files changed

+58
-364
lines changed

7 files changed

+58
-364
lines changed

activator

Lines changed: 0 additions & 334 deletions
This file was deleted.

activator-launch-1.3.2.jar

-1.16 MB
Binary file not shown.

build.sbt

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
1-
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
2-
31
name := """codacy-engine-scala-seed"""
42

5-
version := "1.1.0"
3+
organization := "com.codacy"
4+
5+
version := "1.3.0"
66

77
scalaVersion := "2.10.5"
88

99
crossScalaVersions := Seq("2.10.5", "2.11.7")
1010

1111
scalacOptions := Seq("-deprecation", "-feature", "-unchecked", "-Ywarn-adapted-args", "-Xlint", "-Xfatal-warnings")
1212

13-
organization := "com.codacy"
14-
15-
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.3.8"
13+
resolvers += "Bintray Typesafe Repo" at "http://dl.bintray.com/typesafe/maven-releases/"
1614

17-
organization := "com.codacy"
15+
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.3.10"
1816

1917
organizationName := "Codacy"
2018

@@ -24,7 +22,7 @@ publishMavenStyle := true
2422

2523
publishArtifact in Test := false
2624

27-
pomIncludeRepository := { _ => false}
25+
pomIncludeRepository := { _ => false }
2826

2927
publishTo := {
3028
val nexus = "https://oss.sonatype.org/"

src/main/scala/codacy/dockerApi/DockerEngine.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package codacy.dockerApi
22

33
import codacy.dockerApi.DockerEnvironment._
4-
import play.api.libs.json.{Writes, Format, Json}
4+
import play.api.libs.json.{Json, Writes}
55

66
import scala.util.{Failure, Success}
77

src/main/scala/codacy/dockerApi/DockerEnvironment.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ object DockerEnvironment {
3535
private[this] lazy val configFilePath = sourcePath.resolve(".codacy.json")
3636

3737
lazy val sourcePath = Paths.get("/src")
38-
}
38+
}

0 commit comments

Comments
 (0)