-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (20 loc) · 946 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
24
25
26
27
lazy val `sbt-openapi-generator` = Project("sbt-openapi-generator", file("."))
resolvers += Resolver.bintrayRepo("adenza", "sbt-plugins")
bintrayOrganization := Some("adenza")
bintrayRepository := "sbt-plugins"
bintrayReleaseOnPublish in ThisBuild := false
bintrayOmitLicense := true
scalaVersion := "2.12.10"
organization := "com.github.adenza"
name := "sbt-openapi-generator"
description := "An sbt plugin that offers openapi generation features"
startYear := Some(2019)
homepage := scmInfo.value map (_.browseUrl)
scmInfo := Some(ScmInfo(url("https://github.com/adenza/sbt-openapi-generator/"), "scm:git:[email protected]:adenza/sbt-openapi-generator.git"))
crossSbtVersions := List("0.13.17", "1.1.5")
libraryDependencies += "org.openapitools" % "openapi-generator" % "4.2.3"
enablePlugins(SbtPlugin)
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++ Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
}
scriptedBufferLog := false