From c1e0d911f796f9644c56c9a08a6936625e4f2d9a Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Mon, 27 May 2024 13:59:24 +0200 Subject: [PATCH] Clean up obsolete templates --- .../templates/spring-native-0.9.x.mustache | 16 --------- .../templates/spring-native.mustache | 34 ------------------- 2 files changed, 50 deletions(-) delete mode 100644 start-site/src/main/resources/templates/spring-native-0.9.x.mustache delete mode 100644 start-site/src/main/resources/templates/spring-native.mustache diff --git a/start-site/src/main/resources/templates/spring-native-0.9.x.mustache b/start-site/src/main/resources/templates/spring-native-0.9.x.mustache deleted file mode 100644 index cbc1a8759f..0000000000 --- a/start-site/src/main/resources/templates/spring-native-0.9.x.mustache +++ /dev/null @@ -1,16 +0,0 @@ -## Spring Native - -This project has been configured to let you generate a lightweight container running a native executable. -Docker should be installed and configured on your machine prior to creating the image, see [the Getting Started section of the reference guide](https://docs.spring.io/spring-native/docs/{{version}}/reference/htmlsingle/#getting-started-buildpacks). - -To create the image, run the following goal: - -``` -$ {{cnbBuildImageCommand}} -``` - -Then, you can run the app like any other container: - -``` -$ {{cnbRunImageCommand}} -``` \ No newline at end of file diff --git a/start-site/src/main/resources/templates/spring-native.mustache b/start-site/src/main/resources/templates/spring-native.mustache deleted file mode 100644 index c593ab312a..0000000000 --- a/start-site/src/main/resources/templates/spring-native.mustache +++ /dev/null @@ -1,34 +0,0 @@ -## Spring Native - -This project has been configured to let you generate either a lightweight container or a native executable. - -### Lightweight Container with Cloud Native Buildpacks -If you're already familiar with Spring Boot container images support, this is the easiest way to get started with Spring Native. -Docker should be installed and configured on your machine prior to creating the image, see [the Getting Started section of the reference guide](https://docs.spring.io/spring-native/docs/{{version}}/reference/htmlsingle/#getting-started-buildpacks). - -To create the image, run the following goal: - -``` -$ {{cnbBuildImageCommand}} -``` - -Then, you can run the app like any other container: - -``` -$ {{cnbRunImageCommand}} -``` - -### Executable with Native Build Tools -Use this option if you want to explore more options such as running your tests in a native image. -The GraalVM native-image compiler should be installed and configured on your machine, see [the Getting Started section of the reference guide](https://docs.spring.io/spring-native/docs/{{version}}/reference/htmlsingle/#getting-started-native-build-tools). - -To create the executable, run the following goal: - -``` -$ {{nbtBuildImageCommand}} -``` - -Then, you can run the app as follows: -``` -$ {{nbtRunImageCommand}} -``` \ No newline at end of file