sbt-native-packager icon indicating copy to clipboard operation
sbt-native-packager copied to clipboard

sbt Native Packager

Results 158 sbt-native-packager issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates [org.scala-sbt:io](https://github.com/sbt/io) from `1.9.9` to `1.10.0` 📜 [GitHub Release Notes](https://github.com/sbt/io/releases/tag/v1.10.0) - [Version Diff](https://github.com/sbt/io/compare/v1.9.9...v1.10.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## Expected behaviour When run the command from the documentation I expect them to work as described. ``` containerBuildImage := Some("my-docker-username/graalvm-ce-native-image:19.1.1") ``` but below works. ``` GraalVMNativeImage / containerBuildImage :=...

It currently only escapes the first `'` character, but they should all be escaped. How are shell scripts still a thing in 2024?

## Expected behaviour When using the JavaServerAppPackaging plugin in SBT, I expect it to respect javaOptions specified in SBT. Specifically, when using the plugin as follows: ```scala ThisBuild / javaOptions...

## Background [Since 2019, GraalVM offers Java agent](https://medium.com/graalvm/introducing-the-tracing-agent-simplifying-graalvm-native-image-configuration-c3b56c486271) to collect native image configuration from running JVM app. [GraalVM's official Gradle plugin offers support for the agent](https://graalvm.github.io/native-build-tools/latest/gradle-plugin.html#agent-support). It's user can collect...

## About this PR 📦 Updates [org.scala-lang.modules:scala-parser-combinators](https://github.com/scala/scala-parser-combinators) from `1.1.2` to `2.4.0` ⚠ 📜 [GitHub Release Notes](https://github.com/scala/scala-parser-combinators/releases/tag/v2.4.0) - [Version Diff](https://github.com/scala/scala-parser-combinators/compare/v1.1.2...v2.4.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to...

## Expected behaviour I need to set `--add-opens=java.base/sun.nio.ch=ALL-UNNAMED` for my application. ## Actual behaviour When I set `javaOptions += "-J--add-opensss=java.base/sun.nio.ch=ALL-UNNAMED"` it fails with `Unrecognized option: -J--add-opensss=java.base/sun.nio.ch=ALL-UNNAMED` during the tests. Setting...

## About this PR 📦 Updates [org.scala-lang.modules:scala-xml](https://github.com/scala/scala-xml) from `2.2.0` to `2.3.0` 📜 [GitHub Release Notes](https://github.com/scala/scala-xml/releases/tag/v2.3.0) - [Version Diff](https://github.com/scala/scala-xml/compare/v2.2.0...v2.3.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

We currently use the ZipArchiveEntry(File, String) constructor when creating a zip file entry for Universal/packageBin. This constructor reads mtime, atime, and ctime from the File and adds them to the...

## Expected behaviour When generating the debian package with "debian:packageBin" to have the $JAVA_HOME set when it is not the system default. In build.sbt file I have: ``` Universal /...