mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 05:16:24 +03:00
Fix profiling-utils/compile
This commit is contained in:
parent
7b36ffefc5
commit
edb1862013
15
build.sbt
15
build.sbt
@ -705,9 +705,12 @@ lazy val `akka-native` = project
|
||||
|
||||
lazy val `profiling-utils` = project
|
||||
.in(file("lib/scala/profiling-utils"))
|
||||
.enablePlugins(JPMSPlugin)
|
||||
.configs(Test)
|
||||
.settings(
|
||||
frgaalJavaCompilerSetting,
|
||||
compileOrder := CompileOrder.JavaThenScala,
|
||||
javaModuleName := "org.enso.profiling",
|
||||
version := "0.1",
|
||||
libraryDependencies ++= Seq(
|
||||
"org.netbeans.api" % "org-netbeans-modules-sampler" % netbeansApiVersion
|
||||
@ -725,7 +728,17 @@ lazy val `profiling-utils` = project
|
||||
exclude ("org.netbeans.api", "org-netbeans-api-annotations-common"),
|
||||
"junit" % "junit" % junitVersion % Test,
|
||||
"com.github.sbt" % "junit-interface" % junitIfVersion % Test
|
||||
)
|
||||
),
|
||||
modulePath := {
|
||||
JPMSUtils.filterModulesFromUpdate(
|
||||
update.value,
|
||||
Seq(
|
||||
"org.netbeans.api" % "org-netbeans-modules-sampler" % netbeansApiVersion
|
||||
),
|
||||
streams.value.log,
|
||||
shouldContainAll = true
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
lazy val `logging-utils` = project
|
||||
|
@ -1,4 +1,6 @@
|
||||
module org.enso.profiling {
|
||||
requires org.netbeans.modules.sampler.RELEASE180;
|
||||
requires jdk.management;
|
||||
exports org.enso.profiling.sampler;
|
||||
exports org.enso.profiling.events;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user