Skip to content

Commit

Permalink
[BUILD] Change stf project to new configs
Browse files Browse the repository at this point in the history
to use the "bundle" and "bundleApi" as configurations instead of "releaseDep".

Co-authored-by: Eik0fresh <[email protected]>
Co-authored-by: paun42 <[email protected]>
Co-authored-by: panphil <[email protected]>
  • Loading branch information
4 people committed Feb 22, 2021
1 parent 8550564 commit 3b8c18e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions stf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ sarosEclipse {
isAddDependencies = true
pluginVersionQualifier = versionQualifier
eclipseVersion = eclipseVersionNr
configs = listOf("bundle", "bundleApi")
}

configurations {
val releaseDep by getting {}
val bundleApi by getting {}
val compile by getting {
extendsFrom(releaseDep)
extendsFrom(bundleApi)
}
}

Expand All @@ -35,7 +36,7 @@ dependencies {
implementation("org.eclipse.platform:org.eclipse.ui.workbench:3.120.0")
compile(project(path = ":saros.eclipse", configuration = "testing"))

releaseDep(fileTree("libs"))
bundleApi(fileTree("libs"))
}

sourceSets {
Expand Down

0 comments on commit 3b8c18e

Please sign in to comment.