├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.adoc ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jenkinsResources ├── core-version.txt ├── idea.gdsl └── plugins.json ├── resources ├── com │ └── mkobit │ │ └── globallibraryresources │ │ └── lorumipsum.txt └── idea.gdsl ├── settings.gradle.kts ├── src └── com │ └── mkobit │ └── libraryexample │ └── ExampleSrc.groovy ├── test ├── integration │ └── groovy │ │ └── com │ │ └── mkobit │ │ └── libraryexample │ │ ├── ExampleSrcSpockSpec.groovy │ │ ├── LibraryResourceStepSpec.groovy │ │ ├── RuleBootstrapper.groovy │ │ └── VarsExampleJunitTest.groovy └── unit │ └── groovy │ └── com │ └── mkobit │ └── libraryexample │ └── JPUExampleSpec.groovy └── vars ├── doStuff.groovy └── evenOrOdd.groovy /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/README.adoc -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jenkinsResources/core-version.txt: -------------------------------------------------------------------------------- 1 | 2.164.3 -------------------------------------------------------------------------------- /jenkinsResources/idea.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/jenkinsResources/idea.gdsl -------------------------------------------------------------------------------- /jenkinsResources/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/jenkinsResources/plugins.json -------------------------------------------------------------------------------- /resources/com/mkobit/globallibraryresources/lorumipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/resources/com/mkobit/globallibraryresources/lorumipsum.txt -------------------------------------------------------------------------------- /resources/idea.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/resources/idea.gdsl -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/com/mkobit/libraryexample/ExampleSrc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/src/com/mkobit/libraryexample/ExampleSrc.groovy -------------------------------------------------------------------------------- /test/integration/groovy/com/mkobit/libraryexample/ExampleSrcSpockSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/test/integration/groovy/com/mkobit/libraryexample/ExampleSrcSpockSpec.groovy -------------------------------------------------------------------------------- /test/integration/groovy/com/mkobit/libraryexample/LibraryResourceStepSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/test/integration/groovy/com/mkobit/libraryexample/LibraryResourceStepSpec.groovy -------------------------------------------------------------------------------- /test/integration/groovy/com/mkobit/libraryexample/RuleBootstrapper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/test/integration/groovy/com/mkobit/libraryexample/RuleBootstrapper.groovy -------------------------------------------------------------------------------- /test/integration/groovy/com/mkobit/libraryexample/VarsExampleJunitTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/test/integration/groovy/com/mkobit/libraryexample/VarsExampleJunitTest.groovy -------------------------------------------------------------------------------- /test/unit/groovy/com/mkobit/libraryexample/JPUExampleSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/test/unit/groovy/com/mkobit/libraryexample/JPUExampleSpec.groovy -------------------------------------------------------------------------------- /vars/doStuff.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/vars/doStuff.groovy -------------------------------------------------------------------------------- /vars/evenOrOdd.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkobit/jenkins-pipeline-shared-library-example/HEAD/vars/evenOrOdd.groovy --------------------------------------------------------------------------------