jpack-maven-plugin icon indicating copy to clipboard operation
jpack-maven-plugin copied to clipboard

这是一个用于对 SpringBoot 服务打包为 Windows、Linux、Docker、Helm Chart下可部署包的 Maven 插件。

Results 7 jpack-maven-plugin issues
Sort by recently updated
recently updated
newest added

[WARNING] ***************************************************************** [WARNING] * Your build is requesting parallel execution, but project * [WARNING] * contains the following plugin(s) that have goals not marked * [WARNING] * as @threadSafe to...

Caused by: org.codehaus.plexus.component.configurator.ComponentConfigurationException: Cannot find default setter in class com.blinkfox.jpack.entity.Linux 打包很简单的demo程序,单独打包是成功的,加上jpack打包出现上述报错

是否支持正则匹配,例如**/*.xml,**/*.yml

Bumps [org.apache.maven:maven-core](https://github.com/apache/maven) from 3.2.5 to 3.8.1. Commits 05c21c6 [maven-release-plugin] prepare release maven-3.8.1 d295dc3 [MNG-7128] keep blocked attribute from mirrors in artifact repositories a469068 next version in branch 3.8.x is 3.8.1-SNAPSHOT...

dependencies

Bumps [org.apache.maven:maven-compat](https://github.com/apache/maven) from 3.2.5 to 3.8.1. Commits 05c21c6 [maven-release-plugin] prepare release maven-3.8.1 d295dc3 [MNG-7128] keep blocked attribute from mirrors in artifact repositories a469068 next version in branch 3.8.x is 3.8.1-SNAPSHOT...

dependencies

如题 。 解决方案: `CompressKit.tarGz` `new TarArchiveOutputStream` 时传 `encoding` 参数。 原来: ```java TarArchiveOutputStream taos = new TarArchiveOutputStream(gcos) ``` 修改为: ```java TarArchiveOutputStream taos = new TarArchiveOutputStream(gcos, StandardCharsets.UTF_8.name()) ```