-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
Bump Finagle to 20.10.0; Bump Swagger UI to 3.38.0; Improve test coverage
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.3.12 | ||
sbt.version=1.4.6 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// DO NOT EDIT! This file is auto-generated. | ||
// This file enables sbt-bloop to create bloop config files. | ||
|
||
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.4-13-408f4d80") | ||
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.6-15-209c2a5c") |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
/* | ||
* Copyright (C) 2020 Electronic Arts Inc. All rights reserved. | ||
* Copyright (C) 2021 Electronic Arts Inc. All rights reserved. | ||
*/ | ||
|
||
import sbt._ | ||
|
||
val twitterVersion = "19.8.0" | ||
val circeVersion = "0.11.1" | ||
val twitterVersion = "20.10.0" | ||
val circeVersion = "0.13.0" | ||
|
||
lazy val root = (project in file(".")) | ||
.settings( | ||
scalaVersion := "2.12.8", | ||
scalaVersion := "2.12.12", | ||
libraryDependencies ++= Seq( | ||
"com.twitter" %% "twitter-server" % twitterVersion, | ||
"com.twitter" %% "scrooge-core" % twitterVersion, | ||
"io.circe" %% "circe-generic" % circeVersion, | ||
"io.circe" %% "circe-parser" % circeVersion | ||
"com.twitter" %% "twitter-server" % twitterVersion, | ||
"com.twitter" %% "scrooge-core" % twitterVersion, | ||
"io.circe" %% "circe-generic" % circeVersion, | ||
"io.circe" %% "circe-parser" % circeVersion | ||
), | ||
karaServices := Seq( | ||
"com.dirty.StubService" | ||
"com.example.StubService" | ||
) | ||
) | ||
.enablePlugins(Kara) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* | ||
* Copyright (C) 2020 Electronic Arts Inc. All rights reserved. | ||
* Copyright (C) 2021 Electronic Arts Inc. All rights reserved. | ||
*/ | ||
|
||
sys.props.get("plugin.version") match { | ||
case Some(x) => addSbtPlugin("com.ea.kara" % "kara" % x) | ||
case _ => sys.error("""|The system property 'plugin.version' is not defined. | ||
case _ => sys.error("""|The system property 'plugin.version' is not defined. | ||
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2020 Electronic Arts Inc. All rights reserved. | ||
# Copyright (C) 2021 Electronic Arts Inc. All rights reserved. | ||
|
||
# Make sure the generated sources compile | ||
> compile |