Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions deployer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.30.BUILD-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
<deployer.version>2.3.1.RELEASE</deployer.version>
<java.version>1.8</java.version>
</properties>
Expand Down Expand Up @@ -73,10 +73,10 @@
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<!--<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
</dependency>-->
</dependencies>
</profile>
</profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ private Object findContext(ThinJarAppWrapper wrapper) {
@Override
public RuntimeEnvironmentInfo environmentInfo() {
return new RuntimeEnvironmentInfo.Builder().spiClass(RuntimeEnvironmentInfo.class).implementationName("thin")
.implementationVersion("1.0.30.BUILD-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
.platformClientVersion("1.0.30.BUILD-SNAPSHOT").platformHostVersion("N/A").platformType("local")
.implementationVersion("1.1.0-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
.platformClientVersion("1.1.0-SNAPSHOT").platformHostVersion("N/A").platformType("local")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public void destroy(String appName) {
@Override
public RuntimeEnvironmentInfo environmentInfo() {
return new RuntimeEnvironmentInfo.Builder().spiClass(RuntimeEnvironmentInfo.class).implementationName("thin")
.implementationVersion("1.0.30.BUILD-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
.platformClientVersion("1.0.30.BUILD-SNAPSHOT").platformHostVersion("N/A").platformType("local")
.implementationVersion("1.1.0-SNAPSHOT").platformApiVersion("N/A").platformApiVersion("N/A")
.platformClientVersion("1.1.0-SNAPSHOT").platformHostVersion("N/A").platformType("local")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.30.BUILD-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<artifactId>spring-boot-thin-gradle-plugin</artifactId>
Expand Down
22 changes: 19 additions & 3 deletions launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.30.BUILD-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<artifactId>spring-boot-thin-launcher</artifactId>
Expand All @@ -17,8 +17,8 @@
<description>Demo project for Spring Boot</description>

<properties>
<locator.version>1.0.0.RELEASE</locator.version>
<junit-jupiter.version>5.8.0-M1</junit-jupiter.version>
<locator.version>1.1.0-SNAPSHOT</locator.version>
<junit-jupiter.version>5.9.3</junit-jupiter.version>
</properties>

<dependencyManagement>
Expand All @@ -34,6 +34,7 @@
</dependencyManagement>

<dependencies>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
Expand Down Expand Up @@ -233,6 +234,21 @@
<artifactId>spring-boot-thin-launcher-shade-locator</artifactId>
<version>${locator.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.5</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.5</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.5</version>
</dependency>
</dependencies>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,6 @@ protected String getMainClass() throws Exception {
return ArchiveUtils.findMainClass(getArchive());
}

@Override
protected List<Archive> getClassPathArchives() throws Exception {
return getClassPathArchives(null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Manifest getManifest() throws IOException {
}

@Override
public List<Archive> getNestedArchives(EntryFilter filter) throws IOException {
public Iterator<Archive> getNestedArchives(EntryFilter searchFilter, EntryFilter includeFilter) throws IOException {
throw new UnsupportedOperationException();
}

Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot.version>2.3.1.RELEASE</spring-boot.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/child/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/classifier/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<spring-data-releasetrain.version>Ingalls-RELEASE</spring-data-releasetrain.version>
<start-class>org.springframework.samples.petclinic.PetClinicApplication</start-class>

<thin-launcher.version>1.0.30.BUILD-SNAPSHOT</thin-launcher.version>
<thin-launcher.version>1.1.0-SNAPSHOT</thin-launcher.version>
<spring-boot-plugin.version>1.5.2.RELEASE</spring-boot-plugin.version>
<spring-boot.version>1.4.2.RELEASE</spring-boot.version>

Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/petclinic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<spring-data-releasetrain.version>Ingalls-RELEASE</spring-data-releasetrain.version>
<start-class>org.springframework.samples.petclinic.PetClinicApplication</start-class>

<thin-launcher.version>1.0.30.BUILD-SNAPSHOT</thin-launcher.version>
<thin-launcher.version>1.1.0-SNAPSHOT</thin-launcher.version>
<spring-boot-plugin.version>1.5.2.RELEASE</spring-boot-plugin.version>
<spring-boot.version>1.4.2.RELEASE</spring-boot.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/preresolved/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<spring-data-releasetrain.version>Ingalls-RELEASE</spring-data-releasetrain.version>
<start-class>org.springframework.samples.petclinic.PetClinicApplication</start-class>

<thin-launcher.version>1.0.30.BUILD-SNAPSHOT</thin-launcher.version>
<thin-launcher.version>1.1.0-SNAPSHOT</thin-launcher.version>
<spring-boot-plugin.version>1.5.2.RELEASE</spring-boot-plugin.version>
<spring-boot.version>1.4.2.RELEASE</spring-boot.version>

Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/profiles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/repositories/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot.version>1.5.3.RELEASE</spring-boot.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot.version>2.0.6.RELEASE</spring-boot.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/snapshots/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot.version>2.0.6.RELEASE</spring-boot.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/test/resources/apps/source/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot.version>1.5.3.RELEASE</spring-boot.version>
<wrapper.version>1.0.30.BUILD-SNAPSHOT</wrapper.version>
<wrapper.version>1.1.0-SNAPSHOT</wrapper.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion layout/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.30.BUILD-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<artifactId>spring-boot-thin-layout</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion locator/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
springBootVersion = '1.5.1.RELEASE'
wrapperVersion = '1.0.30.BUILD-SNAPSHOT'
wrapperVersion = '1.1.0-SNAPSHOT'
}
repositories {
mavenLocal()
Expand Down
27 changes: 24 additions & 3 deletions locator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

<artifactId>spring-boot-thin-launcher-shade-locator</artifactId>
<packaging>jar</packaging>
<version>1.0.0.RELEASE</version>
<version>1.1.0-SNAPSHOT</version>

<name>spring-boot-thin-launcher-shade-locator</name>
<description>Supports Spring Boot Maven plugin</description>

<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.3.RELEASE</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<properties>
Expand All @@ -26,8 +26,29 @@
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<version>3.2.4</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.5</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.5</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.5</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>

</dependencies>

<build>
Expand Down
13 changes: 9 additions & 4 deletions maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-launcher-parent</artifactId>
<version>1.0.30.BUILD-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<artifactId>spring-boot-thin-maven-plugin</artifactId>
Expand All @@ -16,11 +16,16 @@
<description>Bootstrap wrapper for launching a thin Boot jar</description>

<properties>
<maven.version>3.1.1</maven.version>
<plexus-archiver.version>3.4</plexus-archiver.version>
<maven.version>3.6.3</maven.version>
<plexus-archiver.version>4.7.1</plexus-archiver.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader-tools</artifactId>
Expand Down Expand Up @@ -49,7 +54,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
<version>3.9.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public abstract class ThinJarMojo extends AbstractMojo {
* (group:artifact:version[:packaging[:classifier]]).
*/
@Parameter(
defaultValue = "org.springframework.boot.experimental:spring-boot-thin-launcher:1.0.30.BUILD-SNAPSHOT:jar:exec",
defaultValue = "org.springframework.boot.experimental:spring-boot-thin-launcher:1.1.0-SNAPSHOT:jar:exec",
required = true, property = "thin.launcherArtifact")
private String thinLauncherArtifact;

Expand Down
Loading