mirror of
https://github.com/playit-cloud/playit-api-java
synced 2025-04-13 13:53:50 +00:00
29 lines
1.3 KiB
Scala
29 lines
1.3 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "org.openapitools",
|
|
name := "playit-api-java",
|
|
version := "unstable",
|
|
scalaVersion := "2.11.4",
|
|
scalacOptions ++= Seq("-feature"),
|
|
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
|
publishArtifact in (Compile, packageDoc) := false,
|
|
resolvers += Resolver.mavenLocal,
|
|
libraryDependencies ++= Seq(
|
|
"io.swagger" % "swagger-annotations" % "1.6.5",
|
|
"com.squareup.okhttp3" % "okhttp" % "4.10.0",
|
|
"com.squareup.okhttp3" % "logging-interceptor" % "4.10.0",
|
|
"com.google.code.gson" % "gson" % "2.9.1",
|
|
"org.apache.commons" % "commons-lang3" % "3.12.0",
|
|
"javax.ws.rs" % "jsr311-api" % "1.1.1",
|
|
"javax.ws.rs" % "javax.ws.rs-api" % "2.1.1",
|
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.6",
|
|
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"org.junit.jupiter" % "junit-jupiter-api" % "5.9.1" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test",
|
|
"org.mockito" % "mockito-core" % "3.12.4" % "test"
|
|
)
|
|
)
|