Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update app & team data & README.md #193

Merged
merged 3 commits into from
Nov 19, 2024
Merged
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: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Scala Packager
Submodule of [Scala CLI](https://github.com/Virtuslab/scala-cli) used to package applications in native formats.

Submodule of ScalaCLI to package application in native formats.

The main goal of this project is to create simple scala library which packaging binary app to the following formats:
The main goal of this project is to create simple scala library which packages binary apps in the following formats:
* Linux
* RedHat
* Debian
Expand All @@ -14,13 +13,10 @@ The main goal of this project is to create simple scala library which packaging
* Docker

## Modules

The project consists of two dependent modules

### Cli

Provides the command line application interface to building native formats. It is used in [scala-cli](https://github.com/VirtusLab/scala-cli/blob/main/.github/scripts/generate-os-packages.sh) for generating os package.

### Packager

Core library for generating specific native package.
14 changes: 13 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Settings.project
inThisBuild(
List(
organization := "org.virtuslab",
homepage := Some(url("https://github.com/VirtuslabRnD/scala-packager")),
homepage := Some(url("https://github.com/VirtusLab/scala-packager")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
Expand All @@ -13,6 +13,18 @@ inThisBuild(
"Łukasz Wroński",
"",
url("https://github.com/lwronski")
),
Developer(
"Gedochao",
"Piotr Chabelski",
"[email protected]",
url("https://github.com/Gedochao")
),
Developer(
"tgodzik",
"Tomasz Godzik",
"[email protected]",
url("https://github.com/tgodzik")
)
)
)
Expand Down