1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/test/groovy/util/ProjectSource.groovy
Alejandra Ferreiro Vidal 79b79457f4 remove !#groovy header
2019-05-23 10:37:28 +02:00

24 lines
687 B
Groovy

package util
import com.lesfurets.jenkins.unit.global.lib.SourceRetriever
/**
* Retrieves the shared lib sources of the current project which are expected to be
* at the default location "./vars".
*/
class ProjectSource implements SourceRetriever {
private def sourceDir = new File('.')
/*
* None of the parameters provided in the signature are used in the use-case of that retriever.
*/
List<URL> retrieve(String repository, String branch, String targetPath) {
if (sourceDir.exists()) {
return [sourceDir.toURI().toURL()]
}
throw new IllegalStateException("Directory $sourceDir.path does not exists!")
}
}