Skip to content

Commit

Permalink
[DO NOT MERGE] Fix stf tests
Browse files Browse the repository at this point in the history
This needs to be squashed into the previous commit later.
  • Loading branch information
FKHals authored and FKHals committed Jan 28, 2021
1 parent d96c368 commit dd07235
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions eclipse/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ dependencies {
// This is a workaround for https://github.com/saros-project/saros/issues/1114
implementation("org.eclipse.platform:org.eclipse.ui.ide:3.17.200")
implementation("org.eclipse.platform:org.eclipse.ui.workbench:3.120.0")
testImplementation(project(path = ":saros.libratory", configuration = "testing"))
testImplementation(project(path = ":saros.core", configuration = "testing"))
}

Expand Down
1 change: 1 addition & 0 deletions intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies {
compile("org.easytesting:fest-swing:1.2.1")
compile("org.easytesting:fest-util:1.1.3")

testImplementation(project(path = ":saros.libratory", configuration = "testing"))
testCompile(project(path = ":saros.core", configuration = "testing"))
}

Expand Down
2 changes: 1 addition & 1 deletion stf.test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val eclipseVersionNr = ext.get("eclipseVersion") as String

sarosEclipse {
manifest = file("META-INF/MANIFEST.MF")
excludeManifestDependencies = listOf("org.junit", "saros.eclipse", "saros.core")
excludeManifestDependencies = listOf("org.junit", "saros.eclipse", "saros.core", "saros.libratory")
isAddDependencies = true
eclipseVersion = eclipseVersionNr
}
Expand Down

0 comments on commit dd07235

Please sign in to comment.