-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
23 lines (18 loc) · 885 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import BuildProperties._
name := "play-jooq"
ThisBuild / version := "21.07u1"
ThisBuild / organization := "com.jackson42.play.jooq"
ThisBuild / scalaVersion := "2.13.6"
ThisBuild / description := "Play-JOOQ is a PlayFramework modules that integrate JOOQ as a way to manipulate your database."
ThisBuild / licenses := Seq("MIT License" -> url("https://opensource.org/licenses/MIT"))
ThisBuild / homepage := Some(url("https://github.com/pierreadam/play-jooq"))
ThisBuild / crossScalaVersions := supportedScalaVersions
ThisBuild / javacOptions ++= Seq("--release", "8")
lazy val root = project.in(file("."))
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % playVersion % Provided,
"com.typesafe.play" %% "play-jdbc" % playVersion % Provided,
"org.jooq" % "jooq" % jooqVersion,
"org.jooq" % "jooq-meta" % jooqVersion,
"org.jooq" % "jooq-codegen" % jooqVersion
)