bbd0e0c568
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/tycho.git#15edd47bbba0d2b7739884e73cfbdc5636e177f9
21 lines
351 B
Bash
Executable File
21 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
_prefer_jre="true"
|
|
. /usr/share/java-utils/java-functions
|
|
|
|
set_jvm
|
|
|
|
set_classpath \
|
|
beust-jcommander \
|
|
eclipse/osgi \
|
|
slf4j/api \
|
|
slf4j/simple \
|
|
tycho/org.fedoraproject.p2 \
|
|
tycho/xmvn-p2-installer-plugin \
|
|
xmvn/xmvn-api \
|
|
xmvn/xmvn-core \
|
|
|
|
MAIN_CLASS=org.fedoraproject.p2.app.P2InstallerApp
|
|
run "$@"
|