Skip to content

Commit

Permalink
extracting jars for module dependencies with -internal scope tests #S…
Browse files Browse the repository at this point in the history
…CL-22721
  • Loading branch information
azdrojowa123 committed Jul 18, 2024
1 parent dd35dfa commit 22753c1
Show file tree
Hide file tree
Showing 4 changed files with 3,593 additions and 3 deletions.
19 changes: 19 additions & 0 deletions extractor/src/test/data/1.9/internal_config/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import sbt.librarymanagement.Configurations.{CompileInternal, RuntimeInternal, TestInternal}

ThisBuild / version := "0.1.0-SNAPSHOT"

ThisBuild / scalaVersion := "3.3.3"

lazy val dummy = (project in file("dummy"))
.settings(
libraryDependencies += "junit" % "junit" % "4.13.2" % TestInternal
)

lazy val root = (project in file("."))
.settings(
libraryDependencies ++= Seq(
"junit" % "junit" % "4.13.2" % Test notTransitive(),
"org.scalacheck" %% "scalacheck" % "1.17.1" % CompileInternal ,
"com.typesafe" % "config" % "1.4.3" % RuntimeInternal,
)
)
Loading

0 comments on commit 22753c1

Please sign in to comment.