Skip to content

Commit 969fb48

Browse files
authored
Merge pull request #207 from lightbend/root-project
Make the plugin the root project
2 parents 1bfc9c2 + 752fe7b commit 969fb48

File tree

97 files changed

+3
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+3
-8
lines changed

build.sbt

+3-8
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,11 @@ val scalaMajorVersion = SettingKey[Int]("scalaMajorVersion")
44
val saveTestClasspath = taskKey[File](
55
"Saves test classpath to a file so that it can be used by embedded scalac in tests")
66

7-
lazy val genjavadoc = (project in file("."))
8-
.aggregate(`genjavadoc-plugin`)
9-
.settings(defaults)
10-
.settings(
11-
publishArtifact := false
12-
)
13-
14-
lazy val `genjavadoc-plugin` = (project in file("plugin"))
7+
lazy val root = (project in file("."))
158
.settings(defaults)
169
.settings(
10+
name := "genjavadoc-plugin",
11+
scalaMajorVersion := CrossVersion.partialVersion(scalaVersion.value).get._2.toInt,
1712
libraryDependencies ++= Seq(
1813
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
1914
"junit" % "junit" % "4.12" % Test,

0 commit comments

Comments
 (0)