├── .github └── workflows │ ├── stack-regression-tests-ol.yml │ └── stack-regression-tests-wl.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── customize-ol.env ├── customize-wl.env ├── src ├── README.md ├── devfiles │ ├── gradle │ │ └── devfile.yaml │ └── maven │ │ └── devfile.yaml ├── image │ ├── gradle │ │ └── Dockerfile │ └── maven │ │ └── Dockerfile └── outer-loop │ ├── gradle │ └── Dockerfile │ └── maven │ └── Dockerfile ├── stack ├── open-liberty │ ├── devfiles │ │ ├── gradle │ │ │ └── devfile.yaml │ │ └── maven │ │ │ └── devfile.yaml │ ├── image │ │ ├── gradle │ │ │ └── Dockerfile │ │ └── maven │ │ │ └── Dockerfile │ ├── meta.yaml │ └── outer-loop │ │ ├── app-deploy.yaml │ │ ├── gradle │ │ └── Dockerfile │ │ └── maven │ │ └── Dockerfile └── websphere-liberty │ ├── devfiles │ ├── gradle │ │ └── devfile.yaml │ └── maven │ │ └── devfile.yaml │ ├── image │ ├── gradle │ │ └── Dockerfile │ └── maven │ │ └── Dockerfile │ ├── meta.yaml │ └── outer-loop │ ├── app-deploy.yaml │ ├── gradle │ └── Dockerfile │ └── maven │ └── Dockerfile ├── test ├── README.md ├── files │ └── intro-app │ │ └── microprofile-v3 │ │ ├── SampleLivenessCheck.java │ │ ├── SampleReadinessCheck.java │ │ ├── build.gradle │ │ ├── pom.xml │ │ └── server.xml ├── inner-loop │ ├── base-inner-loop.sh │ ├── basic-mvnw-test.sh │ ├── basic-test.sh │ ├── build-type-image-test.sh │ ├── devfile-regression-test.sh │ ├── mp3-regression-test.sh │ ├── multi-module.sh │ ├── parent-plugin-test.sh │ └── sample-m2-parent-test.sh ├── outer-loop │ ├── base-outer-loop.sh │ ├── basic-test.sh │ ├── docker-build-mphOff-sccOff-test.sh │ ├── docker-build-mphOff-sccOn-test.sh │ └── docker-build-mphOn-sccOff-test.sh ├── stack │ └── build-test.sh └── utils.sh └── tools ├── build ├── env │ ├── ol.env │ └── wl.env └── scripts │ └── customize.sh └── image ├── LICENSE ├── config └── configDropins │ └── defaults │ └── liberty-stack-mpHealth.xml ├── mvn-stack-settings.xml └── primer └── jaxrs ├── build.gradle ├── pom.xml ├── settings.gradle └── src ├── main └── liberty │ └── config │ └── server.xml └── test └── java └── dev └── odo └── starter └── it └── EndpointIT.java /.github/workflows/stack-regression-tests-ol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/.github/workflows/stack-regression-tests-ol.yml -------------------------------------------------------------------------------- /.github/workflows/stack-regression-tests-wl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/.github/workflows/stack-regression-tests-wl.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/README.md -------------------------------------------------------------------------------- /customize-ol.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/customize-ol.env -------------------------------------------------------------------------------- /customize-wl.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/customize-wl.env -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/README.md -------------------------------------------------------------------------------- /src/devfiles/gradle/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/devfiles/gradle/devfile.yaml -------------------------------------------------------------------------------- /src/devfiles/maven/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/devfiles/maven/devfile.yaml -------------------------------------------------------------------------------- /src/image/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/image/gradle/Dockerfile -------------------------------------------------------------------------------- /src/image/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/image/maven/Dockerfile -------------------------------------------------------------------------------- /src/outer-loop/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/outer-loop/gradle/Dockerfile -------------------------------------------------------------------------------- /src/outer-loop/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/src/outer-loop/maven/Dockerfile -------------------------------------------------------------------------------- /stack/open-liberty/devfiles/gradle/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/devfiles/gradle/devfile.yaml -------------------------------------------------------------------------------- /stack/open-liberty/devfiles/maven/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/devfiles/maven/devfile.yaml -------------------------------------------------------------------------------- /stack/open-liberty/image/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/image/gradle/Dockerfile -------------------------------------------------------------------------------- /stack/open-liberty/image/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/image/maven/Dockerfile -------------------------------------------------------------------------------- /stack/open-liberty/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/meta.yaml -------------------------------------------------------------------------------- /stack/open-liberty/outer-loop/app-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/outer-loop/app-deploy.yaml -------------------------------------------------------------------------------- /stack/open-liberty/outer-loop/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/outer-loop/gradle/Dockerfile -------------------------------------------------------------------------------- /stack/open-liberty/outer-loop/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/open-liberty/outer-loop/maven/Dockerfile -------------------------------------------------------------------------------- /stack/websphere-liberty/devfiles/gradle/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/devfiles/gradle/devfile.yaml -------------------------------------------------------------------------------- /stack/websphere-liberty/devfiles/maven/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/devfiles/maven/devfile.yaml -------------------------------------------------------------------------------- /stack/websphere-liberty/image/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/image/gradle/Dockerfile -------------------------------------------------------------------------------- /stack/websphere-liberty/image/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/image/maven/Dockerfile -------------------------------------------------------------------------------- /stack/websphere-liberty/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/meta.yaml -------------------------------------------------------------------------------- /stack/websphere-liberty/outer-loop/app-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/outer-loop/app-deploy.yaml -------------------------------------------------------------------------------- /stack/websphere-liberty/outer-loop/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/outer-loop/gradle/Dockerfile -------------------------------------------------------------------------------- /stack/websphere-liberty/outer-loop/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/stack/websphere-liberty/outer-loop/maven/Dockerfile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/README.md -------------------------------------------------------------------------------- /test/files/intro-app/microprofile-v3/SampleLivenessCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/files/intro-app/microprofile-v3/SampleLivenessCheck.java -------------------------------------------------------------------------------- /test/files/intro-app/microprofile-v3/SampleReadinessCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/files/intro-app/microprofile-v3/SampleReadinessCheck.java -------------------------------------------------------------------------------- /test/files/intro-app/microprofile-v3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/files/intro-app/microprofile-v3/build.gradle -------------------------------------------------------------------------------- /test/files/intro-app/microprofile-v3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/files/intro-app/microprofile-v3/pom.xml -------------------------------------------------------------------------------- /test/files/intro-app/microprofile-v3/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/files/intro-app/microprofile-v3/server.xml -------------------------------------------------------------------------------- /test/inner-loop/base-inner-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/base-inner-loop.sh -------------------------------------------------------------------------------- /test/inner-loop/basic-mvnw-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/basic-mvnw-test.sh -------------------------------------------------------------------------------- /test/inner-loop/basic-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/basic-test.sh -------------------------------------------------------------------------------- /test/inner-loop/build-type-image-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/build-type-image-test.sh -------------------------------------------------------------------------------- /test/inner-loop/devfile-regression-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/devfile-regression-test.sh -------------------------------------------------------------------------------- /test/inner-loop/mp3-regression-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/mp3-regression-test.sh -------------------------------------------------------------------------------- /test/inner-loop/multi-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/multi-module.sh -------------------------------------------------------------------------------- /test/inner-loop/parent-plugin-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/parent-plugin-test.sh -------------------------------------------------------------------------------- /test/inner-loop/sample-m2-parent-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/inner-loop/sample-m2-parent-test.sh -------------------------------------------------------------------------------- /test/outer-loop/base-outer-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/outer-loop/base-outer-loop.sh -------------------------------------------------------------------------------- /test/outer-loop/basic-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/outer-loop/basic-test.sh -------------------------------------------------------------------------------- /test/outer-loop/docker-build-mphOff-sccOff-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/outer-loop/docker-build-mphOff-sccOff-test.sh -------------------------------------------------------------------------------- /test/outer-loop/docker-build-mphOff-sccOn-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/outer-loop/docker-build-mphOff-sccOn-test.sh -------------------------------------------------------------------------------- /test/outer-loop/docker-build-mphOn-sccOff-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/outer-loop/docker-build-mphOn-sccOff-test.sh -------------------------------------------------------------------------------- /test/stack/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/stack/build-test.sh -------------------------------------------------------------------------------- /test/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/test/utils.sh -------------------------------------------------------------------------------- /tools/build/env/ol.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/build/env/ol.env -------------------------------------------------------------------------------- /tools/build/env/wl.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/build/env/wl.env -------------------------------------------------------------------------------- /tools/build/scripts/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/build/scripts/customize.sh -------------------------------------------------------------------------------- /tools/image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/LICENSE -------------------------------------------------------------------------------- /tools/image/config/configDropins/defaults/liberty-stack-mpHealth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/config/configDropins/defaults/liberty-stack-mpHealth.xml -------------------------------------------------------------------------------- /tools/image/mvn-stack-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/mvn-stack-settings.xml -------------------------------------------------------------------------------- /tools/image/primer/jaxrs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/primer/jaxrs/build.gradle -------------------------------------------------------------------------------- /tools/image/primer/jaxrs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/primer/jaxrs/pom.xml -------------------------------------------------------------------------------- /tools/image/primer/jaxrs/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'priming-app' 2 | -------------------------------------------------------------------------------- /tools/image/primer/jaxrs/src/main/liberty/config/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/primer/jaxrs/src/main/liberty/config/server.xml -------------------------------------------------------------------------------- /tools/image/primer/jaxrs/src/test/java/dev/odo/starter/it/EndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/devfile-stack/HEAD/tools/image/primer/jaxrs/src/test/java/dev/odo/starter/it/EndpointIT.java --------------------------------------------------------------------------------