You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Spring Boot Thin Launcher [](https://ci.spring.io/teams/spring-team/pipelines/spring-boot-thin-launcher)
2
2
3
-
A "thin" jar launcher for java apps. Version 1.0.30.RELEASE is in Maven Central, snapshots are in https://repo.spring.io/libs-snapshot. See https://github.com/spring-projects/spring-boot/issues/1813 for more discussion and ideas.
3
+
A "thin" jar launcher for java apps. Version 1.0.31.RELEASE is in Maven Central, snapshots are in https://repo.spring.io/libs-snapshot. See https://github.com/spring-projects/spring-boot/issues/1813 for more discussion and ideas.
4
4
5
5
## Getting Started
6
6
@@ -26,7 +26,7 @@ means adding it to the Spring Boot plugin declaration:
id 'io.spring.dependency-management' version '1.1.0'
41
41
id 'java'
42
42
id 'maven-publish'
43
-
id 'org.springframework.boot.experimental.thin-launcher' version '1.0.30.RELEASE'
43
+
id 'org.springframework.boot.experimental.thin-launcher' version '1.0.31.RELEASE'
44
44
}
45
45
46
46
group = 'com.example'
@@ -69,7 +69,7 @@ or you can use the older `apply` style declaration:
69
69
buildscript {
70
70
ext {
71
71
springBootVersion = '2.7.6'
72
-
wrapperVersion = '1.0.30.RELEASE'
72
+
wrapperVersion = '1.0.31.RELEASE'
73
73
}
74
74
repositories {
75
75
mavenLocal()
@@ -325,7 +325,7 @@ You can set a variety of options on the command line or with system properties (
325
325
|`thin.location`|`file:.,classpath:/`| The path to directory containing thin properties files (as per `thin.name`), as a comma-separated list of resource locations (directories). These locations plus the same paths relative /META-INF will be searched. |
326
326
|`thin.name`| "thin" | The name of the properties file to search for dependency specifications and overrides. |
327
327
|`thin.profile`| <empty> | Comma-separated list of profiles to use to locate thin properties. E.g. if `thin.profile=foo` the launcher searches for files called `thin.properties` and `thin-foo.properties`. |
328
-
|`thin.library`|`org.springframework.boot.experimental:spring-boot-thin-launcher:1.0.30.RELEASE`| A locator for the launcher library. Can be Maven coordinates (with optional `maven://` prefix), or a file (with optional `file://` prefix). |
328
+
|`thin.library`|`org.springframework.boot.experimental:spring-boot-thin-launcher:1.0.31.RELEASE`| A locator for the launcher library. Can be Maven coordinates (with optional `maven://` prefix), or a file (with optional `file://` prefix). |
329
329
|`thin.repo`|`https://repo.spring.io/snapshot` (also contains GA releases) | Base URL for the `thin.library` if it is in Maven form (the default). |
330
330
|`thin.launcher`|`org.springframework.boot.thin.ThinJarLauncher`| The main class in the `thin.library`. If not specified it is discovered from the manifest `Main-Class` attribute. |
331
331
|`thin.parent.first`| true | Flag to say that the class loader is "parent first" (i.e. the system class loader will be used as the default). This is the "standard" JDK class loader strategy. Setting it to false is similar to what is normally used in web containers and application servers. |
@@ -463,7 +463,7 @@ There is a converter tool that you can use as a library in place of the launcher
0 commit comments