diff --git a/.gitignore b/.gitignore index f472d83..557a808 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,7 @@ node_modules/ .env.* !.env.example *.lic -1c_enterprise_license_tools_0.15.0_2_linux_x86_64.tar.gz -1c_enterprise_license_tools_0.15.0_2_linux_x86_64/ + .DS_Store *.swp *.swo diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64.tar.gz b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64.tar.gz new file mode 100644 index 0000000..a9be247 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64.tar.gz differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-installer-1.9.1+3-linux-anyarch.e1c.car b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-installer-1.9.1+3-linux-anyarch.e1c.car new file mode 100644 index 0000000..9c4d81e Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-installer-1.9.1+3-linux-anyarch.e1c.car differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.car b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.car new file mode 100644 index 0000000..6cb606d Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.car differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.dar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.dar new file mode 100644 index 0000000..7898834 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.dar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.par b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.par new file mode 100644 index 0000000..4b71567 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-license-tools-0.15.0+2-linux-x86_64.e1c.par differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-ring-0.19.5+12-linux-x86_64.e1c.car b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-ring-0.19.5+12-linux-x86_64.e1c.car new file mode 100644 index 0000000..d54451f Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1c-enterprise-ring-0.19.5+12-linux-x86_64.e1c.car differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer new file mode 100644 index 0000000..b179d06 --- /dev/null +++ b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer @@ -0,0 +1,78 @@ +#!/bin/sh + +# ---------------------------------------------------------------------------- +# Installer launcher +# +# Required environment variables: +# JAVA_HOME - location of a Java installation directory. +# Optional environment variables: +# E1C_INSTALLER_OPTS - additional Java options +# ---------------------------------------------------------------------------- + +if [ -z "$JAVA_HOME" ]; then + INSTALLER_JAVA=`command -v java` + if [ ! -f "$INSTALLER_JAVA" ]; then + echo Error: JAVA_HOME environment variable is not set and Java is not found in PATH. + echo Please set the JAVA_HOME environment variable to the location of your Java installation. + exit 1 + fi +else + if [ ! -f "$JAVA_HOME"/bin/java ]; then + echo Error: $JAVA_HOME/bin/java not found. + echo Please set the JAVA_HOME environment variable to the location of your Java installation. + exit 1; + fi + INSTALLER_JAVA=$JAVA_HOME/bin/java +fi + +# Java 9+ support +JAVAVER=`"$INSTALLER_JAVA" -version 2>&1 | awk '/version/ {x = $3; gsub(/"/, "", x); split(x, y, "."); print y[1]}'` +if [ "$JAVAVER" -ge "9" ]; then + JAVA9_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED -Djavax.xml.bind.JAXBContextFactory=org.eclipse.persistence.jaxb.JAXBContextFactory" +fi + +# Check whether we can use additional java options +if [ -n "$E1C_INSTALLER_OPTS" ]; then + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} ${E1C_INSTALLER_OPTS}" +fi; + +if [ -z "$E1C_INSTALLER_LOGS" ]; then + export E1C_INSTALLER_LOGS=/tmp +fi + +echo $JAVA_ADD_OPTS | grep -q :-HeapDumpOnOutOfMemoryError 2>&1 +if [ "$?" -ne "0" ]; then + echo $JAVA_ADD_OPTS | grep -q HeapDumpPath 2>&1 + if [ "$?" -ne "0" ]; then + # JAVA_ADD_OPTS does not contain neither -HeapDumpOnOutOfMemoryError nor HeapDumpPath + mkdir -p "/${E1C_INSTALLER_LOGS}/1ce-installer-crash" + + DATE_TIME=$(date +'%Y%m%dT%H%M%S') + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} -XX:HeapDumpPath=/${E1C_INSTALLER_LOGS}/1ce-installer-crash/oome-memory-dump-${DATE_TIME}.hprof" + fi +fi + +echo $JAVA_ADD_OPTS | grep -q HeapDumpOnOutOfMemoryError 2>&1 +if [ "$?" -ne "0" ]; then + # E1C_INSTALLER_OPTS does not contain HeapDumpOnOutOfMemoryError + JAVA_ADD_OPTS=${JAVA_ADD_OPTS}" -XX:+HeapDumpOnOutOfMemoryError" +fi + +echo $JAVA_ADD_OPTS | grep -q OnError 2>&1 +if [ "$?" -ne "0" ]; then + # JAVA_ADD_OPTS does not contain OnError + mkdir -p "/$E1C_INSTALLER_LOGS/1ce-installer-crash" + + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} -XX:ErrorFile=/${E1C_INSTALLER_LOGS}/1ce-installer-crash/fatal-error-%p.log" +fi + +DIR="$(cd "$(dirname "$0")" && pwd)" +if [ -z "$E1C_INSTALLER_SOURCE" ]; then + export E1C_INSTALLER_SOURCE="$DIR" +fi; + +INSTALLER_MAIN="com._1c.installer.ui.fx.app.InstallerFxApp" + +INSTALLER_CLASSPATH="$DIR/lib/*" + +"$INSTALLER_JAVA" $JAVA9_OPTS $JAVA_ADD_OPTS -cp "$INSTALLER_CLASSPATH" $INSTALLER_MAIN "$@" & diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer-cli b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer-cli new file mode 100644 index 0000000..b064dda --- /dev/null +++ b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/1ce-installer-cli @@ -0,0 +1,79 @@ +#!/bin/sh + +# ---------------------------------------------------------------------------- +# Installer launcher +# +# Required environment variables: +# JAVA_HOME - location of a Java installation directory. +# Optional environment variables: +# E1C_INSTALLER_OPTS - additional Java options +# ---------------------------------------------------------------------------- + +if [ -z "$JAVA_HOME" ]; then + INSTALLER_JAVA=`command -v java` + if [ ! -f "$INSTALLER_JAVA" ]; then + echo Error: JAVA_HOME environment variable is not set and Java is not found in PATH. + echo Please set the JAVA_HOME environment variable to the location of your Java installation. + exit 1 + fi +else + if [ ! -f "$JAVA_HOME"/bin/java ]; then + echo Error: $JAVA_HOME/bin/java not found. + echo Please set the JAVA_HOME environment variable to the location of your Java installation. + exit 1; + fi + INSTALLER_JAVA=$JAVA_HOME/bin/java +fi + +# Java 9+ support +JAVAVER=`"$INSTALLER_JAVA" -version 2>&1 | awk '/version/ {x = $3; gsub(/"/, "", x); split(x, y, "."); print y[1]}'` +if [ "$JAVAVER" -ge "9" ]; then + JAVA9_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED -Djavax.xml.bind.JAXBContextFactory=org.eclipse.persistence.jaxb.JAXBContextFactory" +fi + +# Check whether we can use additional java options +if [ -n "$E1C_INSTALLER_OPTS" ]; then + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} ${E1C_INSTALLER_OPTS}" +fi; + +if [ -z "$E1C_INSTALLER_LOGS" ]; then + export E1C_INSTALLER_LOGS=/tmp +fi + +echo $JAVA_ADD_OPTS | grep -q :-HeapDumpOnOutOfMemoryError 2>&1 +if [ "$?" -ne "0" ]; then + echo $JAVA_ADD_OPTS | grep -q HeapDumpPath 2>&1 + if [ "$?" -ne "0" ]; then + # JAVA_ADD_OPTS does not contain neither -HeapDumpOnOutOfMemoryError nor HeapDumpPath + mkdir -p "/${E1C_INSTALLER_LOGS}/1ce-installer-crash" + + DATE_TIME=$(date +'%Y%m%dT%H%M%S') + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} -XX:HeapDumpPath=/${E1C_INSTALLER_LOGS}/1ce-installer-crash/oome-memory-dump-${DATE_TIME}.hprof" + fi +fi + +echo $JAVA_ADD_OPTS | grep -q HeapDumpOnOutOfMemoryError 2>&1 +if [ "$?" -ne "0" ]; then + # E1C_INSTALLER_OPTS does not contain HeapDumpOnOutOfMemoryError + JAVA_ADD_OPTS=${JAVA_ADD_OPTS}" -XX:+HeapDumpOnOutOfMemoryError" +fi + +echo $JAVA_ADD_OPTS | grep -q OnError 2>&1 +if [ "$?" -ne "0" ]; then + # JAVA_ADD_OPTS does not contain OnError + mkdir -p "/${E1C_INSTALLER_LOGS}/1ce-installer-crash" + + JAVA_ADD_OPTS="${JAVA_ADD_OPTS} -XX:ErrorFile=/${E1C_INSTALLER_LOGS}/1ce-installer-crash/fatal-error-%p.log" +fi + +DIR="$(cd "$(dirname "$0")" && pwd)" + +INSTALLER_MAIN="com._1c.installer.cli.app.InstallerCliApp" + +INSTALLER_CLASSPATH="$DIR/lib/*" + +if [ -z "$E1C_INSTALLER_SOURCE" ]; then + export E1C_INSTALLER_SOURCE="$DIR" +fi; + +"$INSTALLER_JAVA" $JAVA9_OPTS $JAVA_ADD_OPTS -cp "$INSTALLER_CLASSPATH" $INSTALLER_MAIN "$@" diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/activation-1.1.1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/activation-1.1.1.jar new file mode 100644 index 0000000..1b703ab Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/activation-1.1.1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/animal-sniffer-annotations-1.18.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/animal-sniffer-annotations-1.18.jar new file mode 100644 index 0000000..3925273 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/animal-sniffer-annotations-1.18.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/aopalliance-1.0.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/aopalliance-1.0.jar new file mode 100644 index 0000000..578b1a0 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/aopalliance-1.0.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/checker-qual-2.8.1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/checker-qual-2.8.1.jar new file mode 100644 index 0000000..09269be Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/checker-qual-2.8.1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears-0.14.3-11.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears-0.14.3-11.jar new file mode 100644 index 0000000..63e9621 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears-0.14.3-11.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears.guice-0.14.3-11.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears.guice-0.14.3-11.jar new file mode 100644 index 0000000..aaf1f22 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.gears.guice-0.14.3-11.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.desktop-0.16.0-61.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.desktop-0.16.0-61.jar new file mode 100644 index 0000000..d440aa4 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.desktop-0.16.0-61.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.hw-0.11.0-99.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.hw-0.11.0-99.jar new file mode 100644 index 0000000..1495ae7 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.hw-0.11.0-99.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.path-0.11.0-82.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.path-0.11.0-82.jar new file mode 100644 index 0000000..e45b049 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.path-0.11.0-82.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.user-0.10.1-1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.user-0.10.1-1.jar new file mode 100644 index 0000000..6bf0ac2 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.chassis.os.user-0.10.1-1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.params-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.params-1.9.1-3.jar new file mode 100644 index 0000000..d38c4f4 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.params-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.restart-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.restart-1.9.1-3.jar new file mode 100644 index 0000000..44a9b97 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.app.restart-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.cli-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.cli-1.9.1-3.jar new file mode 100644 index 0000000..4b6e244 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.cli-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.distro-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.distro-1.9.1-3.jar new file mode 100644 index 0000000..d81a9d5 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.distro-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.exceptions-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.exceptions-1.9.1-3.jar new file mode 100644 index 0000000..fcde0df Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.exceptions-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.glob-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.glob-1.9.1-3.jar new file mode 100644 index 0000000..24acf9a Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.glob-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.info-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.info-1.9.1-3.jar new file mode 100644 index 0000000..3f964fa Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.info-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logging-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logging-1.9.1-3.jar new file mode 100644 index 0000000..4e37d21 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logging-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logic-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logic-1.9.1-3.jar new file mode 100644 index 0000000..55b8c10 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.logic-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.distro-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.distro-1.9.1-3.jar new file mode 100644 index 0000000..020b923 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.distro-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installed-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installed-1.9.1-3.jar new file mode 100644 index 0000000..bc5913e Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installed-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installer-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installer-1.9.1-3.jar new file mode 100644 index 0000000..7d7f6f6 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.installer-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.manifest-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.manifest-1.9.1-3.jar new file mode 100644 index 0000000..4118b80 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.model.manifest-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.os-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.os-1.9.1-3.jar new file mode 100644 index 0000000..caabf6f Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.os-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.process-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.process-1.9.1-3.jar new file mode 100644 index 0000000..1f5752f Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.process-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ring.support-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ring.support-1.9.1-3.jar new file mode 100644 index 0000000..34eaec1 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ring.support-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.sign-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.sign-1.9.1-3.jar new file mode 100644 index 0000000..038934f Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.sign-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ui-1.9.1-3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ui-1.9.1-3.jar new file mode 100644 index 0000000..83109f9 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.installer.ui-1.9.1-3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.inventory-1.6.0-1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.inventory-1.6.0-1.jar new file mode 100644 index 0000000..7ab32d6 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.inventory-1.6.0-1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.model.shared-1.3.0-1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.model.shared-1.3.0-1.jar new file mode 100644 index 0000000..cbf9eba Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.packaging.model.shared-1.3.0-1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework-0.10.8-2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework-0.10.8-2.jar new file mode 100644 index 0000000..803e387 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework-0.10.8-2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework.impl.registry-0.10.8-2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework.impl.registry-0.10.8-2.jar new file mode 100644 index 0000000..76ab2ba Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com._1c.ring.framework.impl.registry-0.10.8-2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.annotations-1.1.1-java7.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.annotations-1.1.1-java7.jar new file mode 100644 index 0000000..7046353 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.annotations-1.1.1-java7.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.g5.i18n-3.2.0-2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.g5.i18n-3.2.0-2.jar new file mode 100644 index 0000000..41bf119 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.g5.i18n-3.2.0-2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.jcip.annotations-1.1.1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.jcip.annotations-1.1.1.jar new file mode 100644 index 0000000..f84cd85 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/com.e1c.jcip.annotations-1.1.1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/error_prone_annotations-2.3.2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/error_prone_annotations-2.3.2.jar new file mode 100644 index 0000000..bc2584d Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/error_prone_annotations-2.3.2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/failureaccess-1.0.1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/failureaccess-1.0.1.jar new file mode 100644 index 0000000..9b56dc7 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/failureaccess-1.0.1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guava-28.1-jre.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guava-28.1-jre.jar new file mode 100644 index 0000000..081cd11 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guava-28.1-jre.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guice-4.2.2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guice-4.2.2.jar new file mode 100644 index 0000000..1424592 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/guice-4.2.2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/j2objc-annotations-1.3.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/j2objc-annotations-1.3.jar new file mode 100644 index 0000000..a429c72 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/j2objc-annotations-1.3.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.activation-api-1.2.0.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.activation-api-1.2.0.jar new file mode 100644 index 0000000..986c365 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.activation-api-1.2.0.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.inject-1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.inject-1.jar new file mode 100644 index 0000000..b2a9d0b Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.inject-1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.mail-1.6.0.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.mail-1.6.0.jar new file mode 100644 index 0000000..408f3d2 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/javax.mail-1.6.0.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jaxb-api-2.3.1.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jaxb-api-2.3.1.jar new file mode 100644 index 0000000..4565865 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jaxb-api-2.3.1.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jsr305-3.0.2.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jsr305-3.0.2.jar new file mode 100644 index 0000000..59222d9 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jsr305-3.0.2.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jul-to-slf4j-1.8.0-beta4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jul-to-slf4j-1.8.0-beta4.jar new file mode 100644 index 0000000..ef475e0 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/jul-to-slf4j-1.8.0-beta4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar new file mode 100644 index 0000000..45832c0 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-classic-1.3.0-alpha4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-classic-1.3.0-alpha4.jar new file mode 100644 index 0000000..9d53620 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-classic-1.3.0-alpha4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-core-1.3.0-alpha4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-core-1.3.0-alpha4.jar new file mode 100644 index 0000000..256f3de Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/logback-core-1.3.0-alpha4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.asm-2.7.4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.asm-2.7.4.jar new file mode 100644 index 0000000..f31d43b Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.asm-2.7.4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.core-2.7.4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.core-2.7.4.jar new file mode 100644 index 0000000..3094d09 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.core-2.7.4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.moxy-2.7.4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.moxy-2.7.4.jar new file mode 100644 index 0000000..6e65928 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/org.eclipse.persistence.moxy-2.7.4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/slf4j-api-1.8.0-beta4.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/slf4j-api-1.8.0-beta4.jar new file mode 100644 index 0000000..c6458a7 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/slf4j-api-1.8.0-beta4.jar differ diff --git a/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/snakeyaml-1.25.jar b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/snakeyaml-1.25.jar new file mode 100644 index 0000000..0004985 Binary files /dev/null and b/1c_enterprise_license_tools_0.15.0_2_linux_x86_64/lib/snakeyaml-1.25.jar differ