Skip to content

Commit ac4f872

Browse files
FKHalsFKHals
authored andcommitted
[DO NOT MERGE] (Hopefully) fix stf tests
This needs to be squashed into the previous commit later in case it works.
1 parent d96c368 commit ac4f872

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

eclipse/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ dependencies {
4646
// This is a workaround for https://github.com/saros-project/saros/issues/1114
4747
implementation("org.eclipse.platform:org.eclipse.ui.ide:3.17.200")
4848
implementation("org.eclipse.platform:org.eclipse.ui.workbench:3.120.0")
49+
testImplementation(project(path = ":saros.libratory", configuration = "testing"))
4950
testImplementation(project(path = ":saros.core", configuration = "testing"))
5051
}
5152

intellij/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies {
2222
compile("org.easytesting:fest-swing:1.2.1")
2323
compile("org.easytesting:fest-util:1.1.3")
2424

25+
testImplementation(project(path = ":saros.libratory", configuration = "testing"))
2526
testCompile(project(path = ":saros.core", configuration = "testing"))
2627
}
2728

stf.test/META-INF/MANIFEST.MF

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Bundle-Vendor: Saros Project
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Require-Bundle: saros.eclipse,
99
saros.core,
10+
saros.libratory,
1011
org.eclipse.core.runtime,
1112
org.eclipse.jface,
1213
org.junit

stf.test/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ val eclipseVersionNr = ext.get("eclipseVersion") as String
77

88
sarosEclipse {
99
manifest = file("META-INF/MANIFEST.MF")
10-
excludeManifestDependencies = listOf("org.junit", "saros.eclipse", "saros.core")
10+
excludeManifestDependencies = listOf("org.junit", "saros.eclipse", "saros.core", "saros.libratory")
1111
isAddDependencies = true
1212
eclipseVersion = eclipseVersionNr
1313
}

0 commit comments

Comments
 (0)