liquibase: include jars in --version output

Moved jars to the `internal/lib` directory in an attempt to make them appear
in the `liquibase --version` output.

However it didn't help.

I left the change though because the default installer also puts the
jars into internal/lib.
This commit is contained in:
Vladyslav Pekker
2023-07-10 16:00:16 -03:00
parent c64ab88f6c
commit 49d503a9fa
@@ -48,7 +48,10 @@ stdenv.mkDerivation rec {
in
''
mkdir -p $out
mv ./{lib,licenses,internal/lib/*.jar} $out/
mv ./{lib,licenses} $out/
mkdir -p $out/internal/lib
mv ./internal/lib/*.jar $out/internal/lib/
mkdir -p $out/share/doc/${pname}-${version}
mv LICENSE.txt \
@@ -63,6 +66,7 @@ stdenv.mkDerivation rec {
#!/usr/bin/env bash
# taken from the executable script in the source
CP=""
${addJars "$out/internal/lib"}
${addJars "$out/lib"}
${addJars "$out"}
${lib.concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}