Skip to content

Commit 2dc303e

Browse files
committed
rearrange
1 parent a9a5a42 commit 2dc303e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ This gives you the ability to generate client SDKs, documentation, new generator
77
specifications as part of your build. Other tasks are available as command line tasks.
88
"""
99

10-
lazy val `sbt-openapi-generator` = (project in file("."))
11-
.enablePlugins(SbtPlugin)
12-
.settings(
13-
scalaVersion := "2.12.20",
14-
crossScalaVersions := Seq(scalaVersion.value, "3.7.2"),
15-
inThisBuild(List(
10+
inThisBuild(List(
1611
homepage := Some(url("https://openapi-generator.tech")),
1712

1813
organization := "org.openapitools",
@@ -27,8 +22,14 @@ lazy val `sbt-openapi-generator` = (project in file("."))
2722
email = "team@openapitools.org",
2823
url = url("https://github.com/OpenAPITools")
2924
)
30-
)),
25+
))
26+
27+
crossScalaVersions := Nil
3128

29+
lazy val `sbt-openapi-generator` = (project in file("."))
30+
.enablePlugins(SbtPlugin)
31+
.settings(
32+
crossScalaVersions := Seq("2.12.20", "3.7.2"),
3233
sbtPlugin := true,
3334
(pluginCrossBuild / sbtVersion) := {
3435
scalaBinaryVersion.value match {
@@ -43,7 +44,6 @@ lazy val `sbt-openapi-generator` = (project in file("."))
4344

4445
//version := "7.14.0",
4546

46-
4747
scmInfo := Some(
4848
ScmInfo(
4949
browseUrl = url("https://github.com/OpenAPITools/openapi-generator"),

0 commit comments

Comments
 (0)