├── .dockerignore ├── .gitignore ├── .gitpod.yml ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── chart └── base │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── route.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── licenses └── LICENSE.txt ├── package.json ├── pipeline.yaml ├── settings.gradle ├── sonar-project.properties └── src └── main ├── java └── com │ └── ibm │ └── hello │ ├── HelloWatsonApplication.java │ ├── config │ └── OpenApiConfiguration.java │ ├── controllers │ └── HelloWatsonController.java │ ├── health │ └── HealthEndpoint.java │ ├── json │ └── DateConverter.java │ └── models │ └── SimpleResponse.java └── resources ├── application.yaml └── public └── index.html /.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .gradle 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/README.md -------------------------------------------------------------------------------- /chart/base/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/.helmignore -------------------------------------------------------------------------------- /chart/base/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/Chart.yaml -------------------------------------------------------------------------------- /chart/base/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/NOTES.txt -------------------------------------------------------------------------------- /chart/base/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/base/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/deployment.yaml -------------------------------------------------------------------------------- /chart/base/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/hpa.yaml -------------------------------------------------------------------------------- /chart/base/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/ingress.yaml -------------------------------------------------------------------------------- /chart/base/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/route.yaml -------------------------------------------------------------------------------- /chart/base/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/service.yaml -------------------------------------------------------------------------------- /chart/base/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chart/base/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/chart/base/values.yaml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/gradlew.bat -------------------------------------------------------------------------------- /licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/licenses/LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/package.json -------------------------------------------------------------------------------- /pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/pipeline.yaml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'template-java-spring' 2 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/HelloWatsonApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/HelloWatsonApplication.java -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/config/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/config/OpenApiConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/controllers/HelloWatsonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/controllers/HelloWatsonController.java -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/health/HealthEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/health/HealthEndpoint.java -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/json/DateConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/json/DateConverter.java -------------------------------------------------------------------------------- /src/main/java/com/ibm/hello/models/SimpleResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/java/com/ibm/hello/models/SimpleResponse.java -------------------------------------------------------------------------------- /src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/resources/application.yaml -------------------------------------------------------------------------------- /src/main/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/template-java-spring/HEAD/src/main/resources/public/index.html --------------------------------------------------------------------------------