-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename netty-server-loom to netty-server-sync #3704
Conversation
c3d8003
to
dc7a22b
Compare
@@ -249,8 +249,14 @@ lazy val rawAllAggregates = core.projectRefs ++ | |||
derevo.projectRefs ++ | |||
awsCdk.projectRefs | |||
|
|||
def buildWithLoom(project: String): Boolean = | |||
project.contains("Loom") || project.contains("nima") || project.contains("perfTests") || project.contains("examples3") | |||
lazy val loomProjects: Seq[String] = Seq(nettyServerSync, nimaServer, examples).flatMap(_.projectRefs).flatMap(projectId) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perfTests
no longer have to be built with loom, because I moved sync server runner out of it (because of Scala 3 because of Ox :)
// needed because of https://github.com/coursier/coursier/issues/2016 | ||
useCoursier := false, | ||
Test / run / fork := true, | ||
libraryDependencies ++= Seq( | ||
"com.softwaremill.ox" %% "core" % Versions.ox, | ||
"org.reactivestreams" % "reactive-streams-tck" % Versions.reactiveStreams % Test, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 2 deps (reactive-streams-tck and weaver) were added during development of netty-loom websockets but are not needed after all.
No description provided.