mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
998abed377
this identifier is commonly used.
25 lines
660 B
Groovy
25 lines
660 B
Groovy
package util
|
|
|
|
import static com.lesfurets.jenkins.unit.global.lib.LibraryConfiguration.library
|
|
|
|
class SharedLibraryCreator {
|
|
|
|
static def lazyLoadedLibrary = library()
|
|
.name('piper-library-os')
|
|
.retriever(new ProjectSource())
|
|
.targetPath('is/not/necessary')
|
|
.defaultVersion("master")
|
|
.allowOverride(true)
|
|
.implicit(false)
|
|
.build()
|
|
|
|
static def implicitLoadedLibrary = library()
|
|
.name('piper-library-os')
|
|
.retriever(new ProjectSource())
|
|
.targetPath('is/not/necessary')
|
|
.defaultVersion("master")
|
|
.allowOverride(true)
|
|
.implicit(true)
|
|
.build()
|
|
}
|