Skip to content

Commit 93b07cc

Browse files
author
Dave Syer
committed
Update to 1.0.31
1 parent ab9bdd6 commit 93b07cc

File tree

49 files changed

+57
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+57
-57
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spring Boot Thin Launcher [![ci.spring.io](https://ci.spring.io/api/v1/teams/spring-team/pipelines/spring-boot-thin-launcher/badge)](https://ci.spring.io/teams/spring-team/pipelines/spring-boot-thin-launcher)
22

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.
44

55
## Getting Started
66

@@ -26,7 +26,7 @@ means adding it to the Spring Boot plugin declaration:
2626
<dependency>
2727
<groupId>org.springframework.boot.experimental</groupId>
2828
<artifactId>spring-boot-thin-layout</artifactId>
29-
<version>1.0.30.RELEASE</version>
29+
<version>1.0.31.RELEASE</version>
3030
</dependency>
3131
</dependencies>
3232
</plugin>
@@ -40,7 +40,7 @@ plugins {
4040
id 'io.spring.dependency-management' version '1.1.0'
4141
id 'java'
4242
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'
4444
}
4545
4646
group = 'com.example'
@@ -69,7 +69,7 @@ or you can use the older `apply` style declaration:
6969
buildscript {
7070
ext {
7171
springBootVersion = '2.7.6'
72-
wrapperVersion = '1.0.30.RELEASE'
72+
wrapperVersion = '1.0.31.RELEASE'
7373
}
7474
repositories {
7575
mavenLocal()
@@ -325,7 +325,7 @@ You can set a variety of options on the command line or with system properties (
325325
| `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. |
326326
| `thin.name` | "thin" | The name of the properties file to search for dependency specifications and overrides. |
327327
| `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). |
329329
| `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). |
330330
| `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. |
331331
| `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
463463

464464
```
465465
$ java -jar myapp.jar --thin.dryrun --thin.root=target/thin/root
466-
$ java -jar myapp.jar --thin.library=org.springframework.boot.experimental:spring-boot-thin-tools-converter:1.0.30.RELEASE
466+
$ java -jar myapp.jar --thin.library=org.springframework.boot.experimental:spring-boot-thin-tools-converter:1.0.31.RELEASE
467467
$ java -jar myapp-exec.jar
468468
```
469469

deployer/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
<parent>
1515
<groupId>org.springframework.boot.experimental</groupId>
1616
<artifactId>spring-boot-thin-launcher-parent</artifactId>
17-
<version>1.0.31.BUILD-SNAPSHOT</version>
17+
<version>1.0.31.RELEASE</version>
1818
</parent>
1919

2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23-
<wrapper.version>1.0.31.BUILD-SNAPSHOT</wrapper.version>
23+
<wrapper.version>1.0.31.RELEASE</wrapper.version>
2424
<deployer.version>2.3.1.RELEASE</deployer.version>
2525
<java.version>1.8</java.version>
2626
</properties>

deployer/src/main/java/org/springframework/cloud/deployer/thin/ThinJarAppDeployer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ private Object findContext(ThinJarAppWrapper wrapper) {
181181
@Override
182182
public RuntimeEnvironmentInfo environmentInfo() {
183183
return new RuntimeEnvironmentInfo.Builder().spiClass(RuntimeEnvironmentInfo.class).implementationName("thin")
184-
.implementationVersion("1.0.31.BUILD-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
185-
.platformClientVersion("1.0.31.BUILD-SNAPSHOT").platformHostVersion("N/A").platformType("local")
184+
.implementationVersion("1.0.31.RELEASE").platformApiVersion("N/A").platformApiVersion("N/A")
185+
.platformClientVersion("1.0.31.RELEASE").platformHostVersion("N/A").platformType("local")
186186
.build();
187187
}
188188

deployer/src/main/java/org/springframework/cloud/deployer/thin/ThinJarTaskLauncher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public void destroy(String appName) {
5252
@Override
5353
public RuntimeEnvironmentInfo environmentInfo() {
5454
return new RuntimeEnvironmentInfo.Builder().spiClass(RuntimeEnvironmentInfo.class).implementationName("thin")
55-
.implementationVersion("1.0.31.BUILD-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
56-
.platformClientVersion("1.0.31.BUILD-SNAPSHOT").platformHostVersion("N/A").platformType("local")
55+
.implementationVersion("1.0.31.RELEASE").platformApiVersion("N/A").platformApiVersion("N/A")
56+
.platformClientVersion("1.0.31.RELEASE").platformHostVersion("N/A").platformType("local")
5757
.build();
5858
}
5959

deployer/src/test/resources/apps/props/META-INF/maven/com.example/other/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2424
<java.version>1.8</java.version>
25-
<wrapper.version>1.0.31.BUILD-SNAPSHOT</wrapper.version>
25+
<wrapper.version>1.0.31.RELEASE</wrapper.version>
2626
</properties>
2727

2828
<dependencies>

gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot.experimental</groupId>
88
<artifactId>spring-boot-thin-launcher-parent</artifactId>
9-
<version>1.0.31.BUILD-SNAPSHOT</version>
9+
<version>1.0.31.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>spring-boot-thin-gradle-plugin</artifactId>

launcher/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot.experimental</groupId>
99
<artifactId>spring-boot-thin-launcher-parent</artifactId>
10-
<version>1.0.31.BUILD-SNAPSHOT</version>
10+
<version>1.0.31.RELEASE</version>
1111
</parent>
1212

1313
<artifactId>spring-boot-thin-launcher</artifactId>

launcher/src/test/resources/apps/basic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2424
<java.version>1.8</java.version>
2525
<spring-boot.version>2.3.1.RELEASE</spring-boot.version>
26-
<wrapper.version>1.0.31.BUILD-SNAPSHOT</wrapper.version>
26+
<wrapper.version>1.0.31.RELEASE</wrapper.version>
2727
</properties>
2828

2929
<dependencies>

launcher/src/test/resources/apps/boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2424
<java.version>1.8</java.version>
25-
<wrapper.version>1.0.31.BUILD-SNAPSHOT</wrapper.version>
25+
<wrapper.version>1.0.31.RELEASE</wrapper.version>
2626
</properties>
2727

2828
<dependencies>

launcher/src/test/resources/apps/child/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2424
<java.version>1.8</java.version>
25-
<wrapper.version>1.0.31.BUILD-SNAPSHOT</wrapper.version>
25+
<wrapper.version>1.0.31.RELEASE</wrapper.version>
2626
</properties>
2727

2828
<dependencies>

0 commit comments

Comments
 (0)