Skip to content

Commit c6828e5

Browse files
committed
move
1 parent fa097c7 commit c6828e5

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

build.sbt

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,6 @@ specifications as part of your build. Other tasks are available as command line
1010
lazy val scala212 = "2.12.20"
1111
lazy val scala3 = "3.7.2"
1212

13-
inThisBuild(
14-
List(
15-
homepage := Some(url("https://openapi-generator.tech")),
16-
17-
organization := "org.openapitools",
18-
organizationName := "OpenAPI-Generator Contributors",
19-
organizationHomepage := Some(url("https://github.com/OpenAPITools")),
20-
21-
licenses += ("The Apache Software License, Version 2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt")),
22-
23-
developers += Developer(
24-
id = "openapitools",
25-
name = "OpenAPI-Generator Contributors",
26-
email = "team@openapitools.org",
27-
url = url("https://github.com/OpenAPITools")
28-
)
29-
)
30-
)
31-
3213
onLoadMessage := s"Welcome to sbt-openapi-generator ${version.value}"
3314
crossScalaVersions := Nil
3415
//publish / skip := true // don't publish the root project
@@ -39,7 +20,25 @@ lazy val `sbt-openapi-generator` = (project in file("."))
3920
moduleName := "sbt-openapi-generator",
4021
crossScalaVersions := Seq(scala212, scala3),
4122
sbtPlugin := true,
42-
23+
24+
inThisBuild(
25+
List(
26+
homepage := Some(url("https://openapi-generator.tech")),
27+
28+
organization := "org.openapitools",
29+
organizationName := "OpenAPI-Generator Contributors",
30+
organizationHomepage := Some(url("https://github.com/OpenAPITools")),
31+
32+
licenses += ("The Apache Software License, Version 2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt")),
33+
34+
developers += Developer(
35+
id = "openapitools",
36+
name = "OpenAPI-Generator Contributors",
37+
email = "team@openapitools.org",
38+
url = url("https://github.com/OpenAPITools")
39+
)
40+
)
41+
),
4342
libraryDependencies += "org.openapitools" % "openapi-generator" % "7.14.0",
4443
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
4544
)

0 commit comments

Comments
 (0)