Skip to content

Commit 0fd665e

Browse files
authored
Update dependencies and improve build tool testing infrastructure, add JDK 21 (#692)
Additionally: * Refactor build tool tests to support running under any JDK We introduce the concept of Tool, which has restrictions on minimum/maximum JDK version it can run under. We also use external JDK version to conditionally ignore tests.
1 parent ff5891a commit 0fd665e

35 files changed

+1341
-1173
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
# NOTE(olafurpg) Windows is not enabled because it times out due to reasons I don't understand.
1515
# os: [windows-latest, ubuntu-latest]
1616
os: [ubuntu-latest]
17-
java: [8, 11, 17]
17+
java: [8, 11, 17, 21]
1818
steps:
19-
- uses: actions/checkout@v2
20-
- uses: actions/setup-java@v3
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-java@v4
2121
with:
2222
distribution: "temurin"
2323
cache: "sbt"
@@ -29,8 +29,8 @@ jobs:
2929
runs-on: ubuntu-latest
3030
name: Benchmark tests
3131
steps:
32-
- uses: actions/checkout@v2
33-
- uses: actions/setup-java@v3
32+
- uses: actions/checkout@v4
33+
- uses: actions/setup-java@v4
3434
with:
3535
distribution: "temurin"
3636
cache: "sbt"

build.sbt

+19-10
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ lazy val V =
1212
val protobuf = "3.15.6"
1313
val protoc =
1414
"3.17.3" // the oldest protoc version with Apple M1 support, see https://github.com/scalapb/ScalaPB/issues/1024#issuecomment-860126568
15-
val coursier = "2.1.5"
15+
val coursier = "2.1.9"
1616
val scalaXml = "2.1.0"
1717
val bsp = "2.0.0-M13"
18-
val moped = "0.1.11"
18+
val moped = "0.2.0"
1919
val gradle = "7.0"
20-
val scala213 = "2.13.10"
21-
val scala212 = "2.12.17"
20+
val scala213 = "2.13.13"
21+
val scala212 = "2.12.19"
2222
val scala211 = "2.11.12"
23-
val scala3 = "3.2.2"
24-
val metals = "0.11.11"
25-
val scalameta = "4.8.1"
23+
val scala3 = "3.3.3"
24+
val metals = "1.2.2"
25+
val scalameta = "4.9.3"
2626
val semanticdbKotlinc = "0.4.0"
2727
val testcontainers = "0.39.3"
28-
val requests = "0.6.5"
28+
val requests = "0.8.0"
2929
val minimalMillVersion = "0.10.0"
3030
val millScipVersion = "0.3.6"
3131
val kotlinVersion = "1.9.22"
@@ -35,8 +35,6 @@ inThisBuild(
3535
List(
3636
scalaVersion := V.scala213,
3737
crossScalaVersions := List(V.scala213),
38-
scalafixDependencies +=
39-
"com.github.liancheng" %% "organize-imports" % "0.6.0",
4038
scalafixCaching := true,
4139
scalacOptions ++= List("-Wunused:imports"),
4240
semanticdbEnabled := true,
@@ -406,6 +404,17 @@ lazy val minimized17 = project
406404
.dependsOn(agent, javacPlugin)
407405
.disablePlugins(JavaFormatterPlugin)
408406

407+
lazy val minimized21 = project
408+
.in(file("tests/minimized/.j21"))
409+
.settings(
410+
javaOnlySettings,
411+
minimizedSettings,
412+
javaToolchainVersion := "21",
413+
javacOptions ++= javacModuleOptions
414+
)
415+
.dependsOn(agent, javacPlugin)
416+
.disablePlugins(JavaFormatterPlugin)
417+
409418
lazy val minimizedScala = project
410419
.in(file("tests/minimized-scala"))
411420
.settings(

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.7
1+
sbt.version=1.9.9

project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.9.0")
33
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
44
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
55
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
6-
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.24")
7-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
6+
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")
7+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
88
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
99
addSbtPlugin("com.sourcegraph" % "sbt-sourcegraph" % "0.4.3")
1010
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.6.1")

scip-java/src/main/scala/com/sourcegraph/scip_java/Embedded.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ object Embedded {
101101
.forEach { line =>
102102
reporter.error(line)
103103
}
104-
Some(CommandResult(1, Nil))
104+
Some(CommandResult(Nil, 1, Nil))
105105
} else {
106106
None
107107
}

scip-java/src/main/scala/com/sourcegraph/scip_java/buildtools/GradleBuildTool.scala

+6-6
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,16 @@ class GradleBuildTool(index: IndexCommand) extends BuildTool("Gradle", index) {
114114
| import com.sourcegraph.gradle.semanticdb.SemanticdbGradlePlugin
115115
|
116116
| allprojects {
117-
| project.extra["semanticdbTarget"] = "$targetroot"
118-
| project.extra["javacPluginJar"] = "$pluginpath"
119-
| project.extra["dependenciesOut"] = "$dependenciesPath"
120-
| project.extra["javacAgentPath"] = "$agentpath"
121-
| apply<SemanticdbGradlePlugin>()
117+
| project.ext["semanticdbTarget"] = "$targetroot"
118+
| project.ext["javacPluginJar"] = "$pluginpath"
119+
| project.ext["dependenciesOut"] = "$dependenciesPath"
120+
| project.ext["javacAgentPath"] = "$agentpath"
121+
| apply plugin: SemanticdbGradlePlugin
122122
| }
123123
""".stripMargin.trim
124124

125125
Files.write(
126-
tmp.resolve("init-script.gradle.kts"),
126+
tmp.resolve("init-script.gradle"),
127127
script.getBytes(StandardCharsets.UTF_8)
128128
)
129129
}

scip-java/src/main/scala/com/sourcegraph/scip_java/buildtools/ScipBuildTool.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ class ScipBuildTool(index: IndexCommand) extends BuildTool("SCIP", index) {
128128
} catch {
129129
case NonFatal(e) =>
130130
e.printStackTrace(index.app.out)
131-
CommandResult(1, Nil)
131+
CommandResult(Nil, 1, Nil)
132132
}
133133
case ErrorResult(error) =>
134134
error
135135
.all
136136
.foreach { d =>
137137
index.app.error(d.message)
138138
}
139-
CommandResult(1, Nil)
139+
CommandResult(Nil, 1, Nil)
140140
}
141141
}
142142

@@ -186,7 +186,7 @@ class ScipBuildTool(index: IndexCommand) extends BuildTool("SCIP", index) {
186186
s"doing nothing, no files matching pattern '$sourceroot/**.{java,scala,kt}'"
187187
)
188188
}
189-
return CommandResult(0, Nil)
189+
return CommandResult(Nil, 0, Nil)
190190
}
191191

192192
val compileAttempts = ListBuffer.empty[Try[Unit]]
@@ -206,7 +206,7 @@ class ScipBuildTool(index: IndexCommand) extends BuildTool("SCIP", index) {
206206
errors.foreach { error =>
207207
index.app.reporter.log(Diagnostic.exception(error))
208208
}
209-
CommandResult(1, Nil)
209+
CommandResult(Nil, 1, Nil)
210210
} else {
211211
if (errors.nonEmpty && isSemanticdbGenerated) {
212212
index
@@ -221,7 +221,7 @@ class ScipBuildTool(index: IndexCommand) extends BuildTool("SCIP", index) {
221221
index.app.reporter.info(error.getMessage())
222222
}
223223
}
224-
CommandResult(0, Nil)
224+
CommandResult(Nil, 0, Nil)
225225
}
226226
}
227227

semanticdb-gradle-plugin/src/main/scala/SemanticdbGradlePlugin.scala

+49-34
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import com.sourcegraph.scip_java.BuildInfo
1111
import org.gradle.api.DefaultTask
1212
import org.gradle.api.Plugin
1313
import org.gradle.api.Project
14+
import org.gradle.api.artifacts.Configuration
1415
import org.gradle.api.artifacts.component.ModuleComponentIdentifier
1516
import org.gradle.api.provider.Property
1617
import org.gradle.api.publish.PublishingExtension
@@ -65,15 +66,16 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
6566
triggers += "compileJava"
6667
triggers += "compileTestJava"
6768

68-
val hasAnnotationPath = {
69-
val apConfig = project
70-
.getConfigurations()
71-
.getByName("annotationProcessor")
72-
if (apConfig.isCanBeResolved()) {
73-
apConfig.getDependencies().size() > 0
74-
} else
75-
false
76-
}
69+
val hasAnnotationPath = Try(
70+
project.getConfigurations().getByName("annotationProcessor")
71+
).map(apConfig =>
72+
if (apConfig.isCanBeResolved()) {
73+
apConfig.getDependencies().size() > 0
74+
} else
75+
false
76+
)
77+
.toOption
78+
.contains(true)
7779

7880
val compilerPluginAdded =
7981
try {
@@ -93,22 +95,23 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
9395
// If the `compileOnly` configuration has already been evaluated
9496
// by the build, we need to fallback on agent injected into javac
9597
warn(
96-
s"Failed to add compiler plugin to javac, will go through the agent route: ${exc.getMessage()}"
98+
s"Failed to add compiler plugin to javac, will go through the agent route (${exc
99+
.getClass()}): ${exc.getMessage()}"
97100
)
98101
false
99102
}
100103

101104
project
102105
.getTasks()
103106
.withType(classOf[JavaCompile])
104-
.configureEach { task =>
107+
.all { task =>
105108
// If we run on JDK 17, we need to add special flags to the JVM
106109
// to allow access to the compiler.
107110

108111
// JDK 17 support was only introduced in 7.3 so
109112
// we don't need to do it for earlier versions
110113
// https://docs.gradle.org/current/userguide/compatibility.html
111-
if (!gradle.is5 && !gradle.is6) {
114+
if (!gradle.is3 && !gradle.is2 && !gradle.is5 && !gradle.is6) {
112115
type JavaCompiler = {
113116
type Metadata = {
114117
type LangVersion = {
@@ -118,6 +121,7 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
118121
}
119122
def getMetadata(): Metadata
120123
}
124+
121125
type HasCompilerProperty = {
122126
def getJavaCompiler(): Property[JavaCompiler]
123127
}
@@ -320,7 +324,7 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
320324
// classpath is murky
321325
//
322326
// We also don't want to bundle kotlin plugin with this one as it
323-
// can cause all sorts of troubles.
327+
// can cause all sorts of troubles).
324328
//
325329
// Instead, we commit the sins of reflection for our limited
326330
// needs.
@@ -368,7 +372,7 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
368372
}
369373
}
370374

371-
tasks.register(
375+
tasks.create(
372376
"scipCompileAll",
373377
{ task =>
374378
triggers
@@ -380,31 +384,34 @@ class SemanticdbGradlePlugin extends Plugin[Project] {
380384
}
381385
)
382386

383-
tasks.register("scipPrintDependencies", classOf[WriteDependencies])
387+
tasks.create("scipPrintDependencies", classOf[WriteDependencies])
384388

385389
}
386390

387391
}
388392

389-
class GradleVersion(ver: String) {
390-
override def toString(): String = s"[GradleVersion: $ver]"
391-
def is7 = ver.startsWith("7.")
392-
def is8 = ver.startsWith("8.")
393-
def is6 = ver.startsWith("6.")
394-
// 6.7 introduced toolchains support https://blog.gradle.org/java-toolchains
395-
// And javaCompiler property
396-
def is6_7_plus = {
397-
ver match {
398-
case s"6.$x.$y" if x.toInt >= 7 =>
399-
true
400-
case s"6.$x" if x.toInt >= 7 =>
401-
true
402-
case _ =>
403-
false
404-
}
393+
}
394+
395+
class GradleVersion(ver: String) {
396+
override def toString(): String = s"[GradleVersion: $ver]"
397+
def is7 = ver.startsWith("7.")
398+
def is8 = ver.startsWith("8.")
399+
def is6 = ver.startsWith("6.")
400+
// 6.7 introduced toolchains support https://blog.gradle.org/java-toolchains
401+
// And javaCompiler property
402+
def is6_7_plus = {
403+
ver match {
404+
case s"6.$x.$y" if x.toInt >= 7 =>
405+
true
406+
case s"6.$x" if x.toInt >= 7 =>
407+
true
408+
case _ =>
409+
false
405410
}
406-
def is5 = ver.startsWith("5.")
407411
}
412+
def is5 = ver.startsWith("5.")
413+
def is3 = ver.startsWith("3.")
414+
def is2 = ver.startsWith("2.")
408415
}
409416

410417
class WriteDependencies extends DefaultTask {
@@ -424,6 +431,8 @@ class WriteDependencies extends DefaultTask {
424431
val project = getProject()
425432
val projectName = project.getName()
426433

434+
val gradle = new GradleVersion(project.getGradle().getGradleVersion())
435+
427436
// List the project itself as a dependency so that we can assign project name/version to symbols that are defined in this project.
428437
// The code below is roughly equivalent to the following with Groovy:
429438
// deps += "$publication.groupId $publication.artifactId $publication.version $sourceSets.main.output.classesDirectory"
@@ -448,7 +457,7 @@ class WriteDependencies extends DefaultTask {
448457
warn(s"""
449458
|Failed to extract Maven publication from the project `$projectName`.
450459
$crossRepoBanner
451-
|Here's the raw error message:
460+
|Here's the raw error message (${exception.getClass()}):
452461
| "${exception.getMessage()}"
453462
|Continuing without cross-repository support.
454463
""".stripMargin.trim())
@@ -500,10 +509,16 @@ class WriteDependencies extends DefaultTask {
500509
}
501510
}
502511

512+
def canBeResolved(conf: Configuration) =
513+
if (gradle.is2)
514+
!conf.isEmpty()
515+
else
516+
conf.isCanBeResolved()
517+
503518
project
504519
.getConfigurations()
505520
.forEach { conf =>
506-
if (conf.isCanBeResolved()) {
521+
if (canBeResolved(conf)) {
507522
try {
508523
val resolved = conf.getResolvedConfiguration()
509524
resolved

tests/buildTools/src/test/resources/example-maven-pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<maven.compiler.source>1.7</maven.compiler.source>
18-
<maven.compiler.target>1.7</maven.compiler.target>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
<maven.compiler.target>1.8</maven.compiler.target>
1919
</properties>
2020

2121
<dependencies>

0 commit comments

Comments
 (0)