spring-cloud / spring-cloud-skipper

A package manager that installs, upgrades, and rolls back Spring Boot applications on multiple Cloud Platforms.
http://cloud.spring.io/spring-cloud-skipper/
Apache License 2.0
111 stars 78 forks source link

Make cloud skipper jar executable #1051

Closed ccanning closed 2 years ago

ccanning commented 2 years ago

This request is effectively the same as [#4941] (https://github.com/spring-cloud/spring-cloud-dataflow/issues/4941).

Problem description:

We need to run skipper local as a service. Shell already has the executable flag set to true in the spring boot maven plugin.

Solution description:

In your Maven build, add this to the spring boot maven plugin configuration:

true

so, it should look similar to this basic version:

org.springframework.boot spring-boot-maven-plugin true

Description of alternatives: If using gradle, use:

springBoot { executable = true }

This is also fine using a profile specific to local.

Thanks.

onobc commented 2 years ago

Closing for the same reasons listed here.