Skip to content

Commit b1d7593

Browse files
committed
fix manifest path in tests
1 parent b91a239 commit b1d7593

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/test/groovy/nextflow/validation/NfValidationTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class NfValidationTest extends Dsl2Spec{
4848
return new Manifest(input)
4949
}
5050
protected Path getManifestPath(Path pluginPath) {
51-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
51+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5252
}
5353
}
5454
}

src/test/groovy/nextflow/validation/ParamsHelpTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ParamsHelpTest extends Dsl2Spec{
5353
return new Manifest(input)
5454
}
5555
protected Path getManifestPath(Path pluginPath) {
56-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
56+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5757
}
5858
}
5959
}

src/test/groovy/nextflow/validation/ParamsSummaryLogTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ParamsSummaryLogTest extends Dsl2Spec{
5353
return new Manifest(input)
5454
}
5555
protected Path getManifestPath(Path pluginPath) {
56-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
56+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5757
}
5858
}
5959
}

src/test/groovy/nextflow/validation/SamplesheetConverterTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class SamplesheetConverterTest extends Dsl2Spec{
5454
return new Manifest(input)
5555
}
5656
protected Path getManifestPath(Path pluginPath) {
57-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
57+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5858
}
5959
}
6060
}

src/test/groovy/nextflow/validation/ValidateParametersTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ValidateParametersTest extends Dsl2Spec{
5555
return new Manifest(input)
5656
}
5757
protected Path getManifestPath(Path pluginPath) {
58-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
58+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5959
}
6060
}
6161
}

src/test/groovy/nextflow/validation/ValidateTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ValidateTest extends Dsl2Spec{
5454
return new Manifest(input)
5555
}
5656
protected Path getManifestPath(Path pluginPath) {
57-
return pluginPath.resolve('build/resources/main/META-INF/MANIFEST.MF')
57+
return pluginPath.resolve('build/tmp/jar/MANIFEST.MF')
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)