mirror of
https://github.com/apache/maven-mvnd.git
synced 2026-01-21 01:14:34 +08:00
Split daemon module into daemon and dist #130
This commit is contained in:
@@ -1,201 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Apache Maven Startup Script
|
||||
#
|
||||
# Environment Variable Prerequisites
|
||||
#
|
||||
# JAVA_HOME Must point at your Java Development Kit installation.
|
||||
# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
|
||||
# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.mavenrc" ] ; then
|
||||
. "$HOME/.mavenrc"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# OS specific support. $var _must_ be set to either true or false.
|
||||
cygwin=false;
|
||||
mingw=false;
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true;;
|
||||
MINGW*) mingw=true;;
|
||||
esac
|
||||
|
||||
## resolve links - $0 may be a link to Maven's home
|
||||
PRG="$0"
|
||||
|
||||
# need this for relative symlinks
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`dirname "$PRG"`/$link"
|
||||
fi
|
||||
done
|
||||
|
||||
saveddir=`pwd`
|
||||
|
||||
MVND_HOME=`dirname "$PRG"`/..
|
||||
|
||||
# make it fully qualified
|
||||
MVND_HOME=`cd "$MVND_HOME" && pwd`
|
||||
|
||||
cd "$saveddir"
|
||||
|
||||
# For Cygwin, ensure paths are in Unix format before anything is touched
|
||||
if $cygwin ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`cygpath --unix "$MVND_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||
fi
|
||||
|
||||
# For MinGW, ensure paths are in Unix format before anything is touched
|
||||
if $mingw ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`(cd "$MVND_HOME"; pwd)`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`(cd "$JAVA_HOME"; pwd)`
|
||||
# TODO classpath?
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
JAVACMD=`which java`
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
echo "The JAVA_HOME environment variable is not defined correctly" >&2
|
||||
echo "This environment variable is needed to run this program" >&2
|
||||
echo "NB: JAVA_HOME should point to a JDK not a JRE" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DAEMON_JAR=`echo "${MVND_HOME}"/mvn/lib/ext/*.jar "${MVND_HOME}"/mvn/lib/*.jar`
|
||||
DAEMON_JAR=$(echo $DAEMON_JAR | sed -e 's/ /:/g')
|
||||
DAEMON_LAUNCHER=org.jboss.fuse.mvnd.client.DefaultClient
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`cygpath --path --windows "$MVND_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||
[ -n "$DAEMON_JAR" ] &&
|
||||
DAEMON_JAR=`cygpath --path --windows "$DAEMON_JAR"`
|
||||
fi
|
||||
|
||||
# traverses directory structure from process work directory to filesystem root
|
||||
# first directory with .mvn subdirectory is considered project base directory
|
||||
find_maven_basedir() {
|
||||
(
|
||||
basedir=`find_file_argument_basedir "$@"`
|
||||
wdir="${basedir}"
|
||||
while [ "$wdir" != '/' ] ; do
|
||||
if [ -d "$wdir"/.mvn ] ; then
|
||||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
find_file_argument_basedir() {
|
||||
(
|
||||
basedir=`pwd`
|
||||
|
||||
found_file_switch=0
|
||||
for arg in "$@"; do
|
||||
if [ ${found_file_switch} -eq 1 ]; then
|
||||
if [ -d "${arg}" ]; then
|
||||
basedir=`cd "${arg}" && pwd -P`
|
||||
elif [ -f "${arg}" ]; then
|
||||
basedir=`dirname "${arg}"`
|
||||
basedir=`cd "${basedir}" && pwd -P`
|
||||
if [ ! -d "${basedir}" ]; then
|
||||
echo "Directory ${basedir} extracted from the -f/--file command-line argument ${arg} does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "POM file ${arg} specified with the -f/--file command line argument does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
break
|
||||
fi
|
||||
if [ "$arg" = "-f" ] || [ "$arg" = "--file" ]; then
|
||||
found_file_switch=1
|
||||
fi
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
# concatenates all lines of a file
|
||||
concat_lines() {
|
||||
if [ -f "$1" ]; then
|
||||
echo "`tr -s '\r\n' ' ' < "$1"`"
|
||||
fi
|
||||
}
|
||||
|
||||
MAVEN_PROJECTBASEDIR="${MAVEN_BASEDIR:-`find_maven_basedir "$@"`}"
|
||||
MAVEN_OPTS="`concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"` $MAVEN_OPTS"
|
||||
|
||||
# For Cygwin, switch project base directory path to Windows format before
|
||||
# executing Maven otherwise this will cause Maven not to consider it.
|
||||
if $cygwin ; then
|
||||
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||
fi
|
||||
|
||||
export MAVEN_PROJECTBASEDIR
|
||||
|
||||
# Provide a "standardized" way to retrieve the CLI args that will
|
||||
# work with both Windows and non-Windows executions.
|
||||
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||
export MAVEN_CMD_LINE_ARGS
|
||||
|
||||
exec "$JAVACMD" \
|
||||
$MAVEN_OPTS \
|
||||
$MAVEN_DEBUG_OPTS \
|
||||
-classpath "${DAEMON_JAR}" \
|
||||
"-Dlogback.configurationFile=${MVND_HOME}/mvn/conf/logging/logback.xml" \
|
||||
"-Dmvnd.home=${MVND_HOME}" \
|
||||
"-Dmaven.home=${MVND_HOME}/mvn" \
|
||||
"-Dlibrary.jansi.path=${MVND_HOME}/mvn/lib/jansi-native" \
|
||||
"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||
${DAEMON_LAUNCHER} "$@"
|
||||
@@ -1,203 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Apache Maven Startup Script
|
||||
#
|
||||
# Environment Variable Prerequisites
|
||||
#
|
||||
# JAVA_HOME Must point at your Java Development Kit installation.
|
||||
# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
|
||||
# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.mavenrc" ] ; then
|
||||
. "$HOME/.mavenrc"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# OS specific support. $var _must_ be set to either true or false.
|
||||
cygwin=false;
|
||||
mingw=false;
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true;;
|
||||
MINGW*) mingw=true;;
|
||||
esac
|
||||
|
||||
## resolve links - $0 may be a link to Maven's home
|
||||
PRG="$0"
|
||||
|
||||
# need this for relative symlinks
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`dirname "$PRG"`/$link"
|
||||
fi
|
||||
done
|
||||
|
||||
saveddir=`pwd`
|
||||
|
||||
MVND_HOME=`dirname "$PRG"`/..
|
||||
|
||||
# make it fully qualified
|
||||
MVND_HOME=`cd "$MVND_HOME" && pwd`
|
||||
|
||||
cd "$saveddir"
|
||||
|
||||
# For Cygwin, ensure paths are in Unix format before anything is touched
|
||||
if $cygwin ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`cygpath --unix "$MVND_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||
fi
|
||||
|
||||
# For MinGW, ensure paths are in Unix format before anything is touched
|
||||
if $mingw ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`(cd "$MVND_HOME"; pwd)`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`(cd "$JAVA_HOME"; pwd)`
|
||||
# TODO classpath?
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
JAVACMD=`which java`
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
echo "The JAVA_HOME environment variable is not defined correctly" >&2
|
||||
echo "This environment variable is needed to run this program" >&2
|
||||
echo "NB: JAVA_HOME should point to a JDK not a JRE" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
CLASSWORLDS_JAR=`echo "${MVND_HOME}"/mvn/boot/plexus-classworlds-*.jar`
|
||||
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
[ -n "$MVND_HOME" ] &&
|
||||
MVND_HOME=`cygpath --path --windows "$MVND_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||
[ -n "$CLASSWORLDS_JAR" ] &&
|
||||
CLASSWORLDS_JAR=`cygpath --path --windows "$CLASSWORLDS_JAR"`
|
||||
fi
|
||||
|
||||
# traverses directory structure from process work directory to filesystem root
|
||||
# first directory with .mvn subdirectory is considered project base directory
|
||||
find_maven_basedir() {
|
||||
(
|
||||
basedir=`find_file_argument_basedir "$@"`
|
||||
wdir="${basedir}"
|
||||
while [ "$wdir" != '/' ] ; do
|
||||
if [ -d "$wdir"/.mvn ] ; then
|
||||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
find_file_argument_basedir() {
|
||||
(
|
||||
basedir=`pwd`
|
||||
|
||||
found_file_switch=0
|
||||
for arg in "$@"; do
|
||||
if [ ${found_file_switch} -eq 1 ]; then
|
||||
if [ -d "${arg}" ]; then
|
||||
basedir=`cd "${arg}" && pwd -P`
|
||||
elif [ -f "${arg}" ]; then
|
||||
basedir=`dirname "${arg}"`
|
||||
basedir=`cd "${basedir}" && pwd -P`
|
||||
if [ ! -d "${basedir}" ]; then
|
||||
echo "Directory ${basedir} extracted from the -f/--file command-line argument ${arg} does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "POM file ${arg} specified with the -f/--file command line argument does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
break
|
||||
fi
|
||||
if [ "$arg" = "-f" -o "$arg" = "--file" ]; then
|
||||
found_file_switch=1
|
||||
fi
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
# concatenates all lines of a file
|
||||
concat_lines() {
|
||||
if [ -f "$1" ]; then
|
||||
echo "`tr -s '\r\n' ' ' < "$1"`"
|
||||
fi
|
||||
}
|
||||
|
||||
MAVEN_PROJECTBASEDIR="${MAVEN_BASEDIR:-`find_maven_basedir "$@"`}"
|
||||
MAVEN_OPTS="`concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"` $MAVEN_OPTS"
|
||||
|
||||
# For Cygwin, switch project base directory path to Windows format before
|
||||
# executing Maven otherwise this will cause Maven not to consider it.
|
||||
if $cygwin ; then
|
||||
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||
fi
|
||||
|
||||
export MAVEN_PROJECTBASEDIR
|
||||
|
||||
# Provide a "standardized" way to retrieve the CLI args that will
|
||||
# work with both Windows and non-Windows executions.
|
||||
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||
export MAVEN_CMD_LINE_ARGS
|
||||
|
||||
exec "$JAVACMD" \
|
||||
$MAVEN_OPTS \
|
||||
$MAVEN_DEBUG_OPTS \
|
||||
-classpath "${CLASSWORLDS_JAR}" \
|
||||
"-Dlogback.configurationFile=${MVND_HOME}/mvn/conf/logging/logback.xml" \
|
||||
-Dmvnd.logging=mvns \
|
||||
"-Dclassworlds.conf=${MVND_HOME}/mvn/bin/m2.conf" \
|
||||
"-Dmvnd.home=${MVND_HOME}" \
|
||||
"-Dmaven.home=${MVND_HOME}/mvn" \
|
||||
"-Dlibrary.jansi.path=${MVND_HOME}/mvn/lib/jansi-native" \
|
||||
"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||
${CLASSWORLDS_LAUNCHER} --builder smart --threads 0.5C "$@"
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
main is org.apache.maven.cli.MavenCli from plexus.core
|
||||
|
||||
set maven.conf default ${maven.home}/conf
|
||||
|
||||
[plexus.core]
|
||||
load ${maven.conf}/logging
|
||||
optionally ${maven.home}/lib/ext/*.jar
|
||||
load ${maven.home}/lib/*.jar
|
||||
@@ -1,201 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Apache Maven Startup Script
|
||||
#
|
||||
# Environment Variable Prerequisites
|
||||
#
|
||||
# JAVA_HOME Must point at your Java Development Kit installation.
|
||||
# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
|
||||
# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.mavenrc" ] ; then
|
||||
. "$HOME/.mavenrc"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# OS specific support. $var _must_ be set to either true or false.
|
||||
cygwin=false;
|
||||
mingw=false;
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true;;
|
||||
MINGW*) mingw=true;;
|
||||
esac
|
||||
|
||||
## resolve links - $0 may be a link to Maven's home
|
||||
PRG="$0"
|
||||
|
||||
# need this for relative symlinks
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`dirname "$PRG"`/$link"
|
||||
fi
|
||||
done
|
||||
|
||||
saveddir=`pwd`
|
||||
|
||||
MAVEN_HOME=`dirname "$PRG"`/..
|
||||
|
||||
# make it fully qualified
|
||||
MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
|
||||
|
||||
cd "$saveddir"
|
||||
|
||||
# For Cygwin, ensure paths are in Unix format before anything is touched
|
||||
if $cygwin ; then
|
||||
[ -n "$MAVEN_HOME" ] &&
|
||||
MAVEN_HOME=`cygpath --unix "$MAVEN_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||
fi
|
||||
|
||||
# For MinGW, ensure paths are in Unix format before anything is touched
|
||||
if $mingw ; then
|
||||
[ -n "$MAVEN_HOME" ] &&
|
||||
MAVEN_HOME=`(cd "$MAVEN_HOME"; pwd)`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`(cd "$JAVA_HOME"; pwd)`
|
||||
# TODO classpath?
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
JAVACMD=`which java`
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
echo "The JAVA_HOME environment variable is not defined correctly" >&2
|
||||
echo "This environment variable is needed to run this program" >&2
|
||||
echo "NB: JAVA_HOME should point to a JDK not a JRE" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
CLASSWORLDS_JAR=`echo "${MAVEN_HOME}"/boot/plexus-classworlds-*.jar`
|
||||
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
[ -n "$MAVEN_HOME" ] &&
|
||||
MAVEN_HOME=`cygpath --path --windows "$MAVEN_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||
[ -n "$CLASSWORLDS_JAR" ] &&
|
||||
CLASSWORLDS_JAR=`cygpath --path --windows "$CLASSWORLDS_JAR"`
|
||||
fi
|
||||
|
||||
# traverses directory structure from process work directory to filesystem root
|
||||
# first directory with .mvn subdirectory is considered project base directory
|
||||
find_maven_basedir() {
|
||||
(
|
||||
basedir=`find_file_argument_basedir "$@"`
|
||||
wdir="${basedir}"
|
||||
while [ "$wdir" != '/' ] ; do
|
||||
if [ -d "$wdir"/.mvn ] ; then
|
||||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
find_file_argument_basedir() {
|
||||
(
|
||||
basedir=`pwd`
|
||||
|
||||
found_file_switch=0
|
||||
for arg in "$@"; do
|
||||
if [ ${found_file_switch} -eq 1 ]; then
|
||||
if [ -d "${arg}" ]; then
|
||||
basedir=`cd "${arg}" && pwd -P`
|
||||
elif [ -f "${arg}" ]; then
|
||||
basedir=`dirname "${arg}"`
|
||||
basedir=`cd "${basedir}" && pwd -P`
|
||||
if [ ! -d "${basedir}" ]; then
|
||||
echo "Directory ${basedir} extracted from the -f/--file command-line argument ${arg} does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "POM file ${arg} specified with the -f/--file command line argument does not exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
break
|
||||
fi
|
||||
if [ "$arg" = "-f" -o "$arg" = "--file" ]; then
|
||||
found_file_switch=1
|
||||
fi
|
||||
done
|
||||
echo "${basedir}"
|
||||
)
|
||||
}
|
||||
|
||||
# concatenates all lines of a file
|
||||
concat_lines() {
|
||||
if [ -f "$1" ]; then
|
||||
echo "`tr -s '\r\n' ' ' < "$1"`"
|
||||
fi
|
||||
}
|
||||
|
||||
MAVEN_PROJECTBASEDIR="${MAVEN_BASEDIR:-`find_maven_basedir "$@"`}"
|
||||
MAVEN_OPTS="`concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"` $MAVEN_OPTS"
|
||||
|
||||
# For Cygwin, switch project base directory path to Windows format before
|
||||
# executing Maven otherwise this will cause Maven not to consider it.
|
||||
if $cygwin ; then
|
||||
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||
fi
|
||||
|
||||
export MAVEN_PROJECTBASEDIR
|
||||
|
||||
# Provide a "standardized" way to retrieve the CLI args that will
|
||||
# work with both Windows and non-Windows executions.
|
||||
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||
export MAVEN_CMD_LINE_ARGS
|
||||
|
||||
exec "$JAVACMD" \
|
||||
$MAVEN_OPTS \
|
||||
$MAVEN_DEBUG_OPTS \
|
||||
-classpath "${CLASSWORLDS_JAR}" \
|
||||
"-Dlogback.configurationFile=${MAVEN_HOME}/conf/logging/logback-mvn.xml" \
|
||||
"-Dclassworlds.conf=${MAVEN_HOME}/bin/m2.conf" \
|
||||
"-Dmvnd.home=${MAVEN_HOME}" \
|
||||
"-Dmaven.home=${MAVEN_HOME}" \
|
||||
"-Dlibrary.jansi.path=${MAVEN_HOME}/lib/jansi-native" \
|
||||
"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||
${CLASSWORLDS_LAUNCHER} "$@"
|
||||
@@ -1,207 +0,0 @@
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||
@REM or more contributor license agreements. See the NOTICE file
|
||||
@REM distributed with this work for additional information
|
||||
@REM regarding copyright ownership. The ASF licenses this file
|
||||
@REM to you under the Apache License, Version 2.0 (the
|
||||
@REM "License"); you may not use this file except in compliance
|
||||
@REM with the License. You may obtain a copy of the License at
|
||||
@REM
|
||||
@REM http://www.apache.org/licenses/LICENSE-2.0
|
||||
@REM
|
||||
@REM Unless required by applicable law or agreed to in writing,
|
||||
@REM software distributed under the License is distributed on an
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
@REM KIND, either express or implied. See the License for the
|
||||
@REM specific language governing permissions and limitations
|
||||
@REM under the License.
|
||||
|
||||
@REM -----------------------------------------------------------------------------
|
||||
@REM Apache Maven Startup Script
|
||||
@REM
|
||||
@REM Environment Variable Prerequisites
|
||||
@REM
|
||||
@REM JAVA_HOME Must point at your Java Development Kit installation.
|
||||
@REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands.
|
||||
@REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending.
|
||||
@REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
|
||||
@REM MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files.
|
||||
@REM -----------------------------------------------------------------------------
|
||||
|
||||
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||
@echo off
|
||||
@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
|
||||
@if "%MAVEN_BATCH_ECHO%"=="on" echo %MAVEN_BATCH_ECHO%
|
||||
|
||||
@REM Execute a user defined script before this one
|
||||
if not "%MAVEN_SKIP_RC%"=="" goto skipRcPre
|
||||
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat"
|
||||
if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd"
|
||||
:skipRcPre
|
||||
|
||||
@setlocal
|
||||
|
||||
set ERROR_CODE=0
|
||||
|
||||
@REM ==== START VALIDATION ====
|
||||
if not "%JAVA_HOME%"=="" goto OkJHome
|
||||
for %%i in (java.exe) do set "JAVACMD=%%~$PATH:i"
|
||||
goto checkJCmd
|
||||
|
||||
:OkJHome
|
||||
set "JAVACMD=%JAVA_HOME%\bin\java.exe"
|
||||
|
||||
:checkJCmd
|
||||
if exist "%JAVACMD%" goto chkMHome
|
||||
|
||||
echo The JAVA_HOME environment variable is not defined correctly >&2
|
||||
echo This environment variable is needed to run this program >&2
|
||||
echo NB: JAVA_HOME should point to a JDK not a JRE >&2
|
||||
goto error
|
||||
|
||||
:chkMHome
|
||||
set "MAVEN_HOME=%~dp0.."
|
||||
if not "%MAVEN_HOME%"=="" goto stripMHome
|
||||
goto error
|
||||
|
||||
:stripMHome
|
||||
if not "_%MAVEN_HOME:~-1%"=="_\" goto checkMCmd
|
||||
set "MAVEN_HOME=%MAVEN_HOME:~0,-1%"
|
||||
goto stripMHome
|
||||
|
||||
:checkMCmd
|
||||
if exist "%MAVEN_HOME%\bin\mvn.cmd" goto init
|
||||
goto error
|
||||
@REM ==== END VALIDATION ====
|
||||
|
||||
:init
|
||||
|
||||
set MAVEN_CMD_LINE_ARGS=%*
|
||||
|
||||
@REM Find the project basedir, i.e., the directory that contains the folder ".mvn".
|
||||
@REM Fallback to current working directory if not found.
|
||||
|
||||
set "MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%"
|
||||
if not "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||
|
||||
set "EXEC_DIR=%CD%"
|
||||
set "WDIR=%EXEC_DIR%"
|
||||
|
||||
@REM Look for the --file switch and start the search for the .mvn directory from the specified
|
||||
@REM POM location, if supplied.
|
||||
|
||||
set FILE_ARG=
|
||||
:arg_loop
|
||||
if "%~1" == "-f" (
|
||||
set "FILE_ARG=%~2"
|
||||
shift
|
||||
goto process_file_arg
|
||||
)
|
||||
if "%~1" == "--file" (
|
||||
set "FILE_ARG=%~2"
|
||||
shift
|
||||
goto process_file_arg
|
||||
)
|
||||
@REM If none of the above, skip the argument
|
||||
shift
|
||||
if not "%~1" == "" (
|
||||
goto arg_loop
|
||||
) else (
|
||||
goto findBaseDir
|
||||
)
|
||||
|
||||
:process_file_arg
|
||||
if "%FILE_ARG%" == "" (
|
||||
goto findBaseDir
|
||||
)
|
||||
if not exist "%FILE_ARG%" (
|
||||
echo POM file "%FILE_ARG%" specified the -f/--file command-line argument does not exist >&2
|
||||
goto error
|
||||
)
|
||||
if exist "%FILE_ARG%\*" (
|
||||
set "POM_DIR=%FILE_ARG%"
|
||||
) else (
|
||||
call :get_directory_from_file "%FILE_ARG%"
|
||||
)
|
||||
if not exist "%POM_DIR%" (
|
||||
echo Directory "%POM_DIR%" extracted from the -f/--file command-line argument "%FILE_ARG%" does not exist >&2
|
||||
goto error
|
||||
)
|
||||
set "WDIR=%POM_DIR%"
|
||||
goto findBaseDir
|
||||
|
||||
:get_directory_from_file
|
||||
set "POM_DIR=%~dp1"
|
||||
:stripPomDir
|
||||
if not "_%POM_DIR:~-1%"=="_\" goto pomDirStripped
|
||||
set "POM_DIR=%POM_DIR:~0,-1%"
|
||||
goto stripPomDir
|
||||
:pomDirStripped
|
||||
exit /b
|
||||
|
||||
:findBaseDir
|
||||
cd /d "%WDIR%"
|
||||
:findBaseDirLoop
|
||||
if exist "%WDIR%\.mvn" goto baseDirFound
|
||||
cd ..
|
||||
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||
set "WDIR=%CD%"
|
||||
goto findBaseDirLoop
|
||||
|
||||
:baseDirFound
|
||||
set "MAVEN_PROJECTBASEDIR=%WDIR%"
|
||||
cd /d "%EXEC_DIR%"
|
||||
goto endDetectBaseDir
|
||||
|
||||
:baseDirNotFound
|
||||
if "_%EXEC_DIR:~-1%"=="_\" set "EXEC_DIR=%EXEC_DIR:~0,-1%"
|
||||
set "MAVEN_PROJECTBASEDIR=%EXEC_DIR%"
|
||||
cd "%EXEC_DIR%"
|
||||
|
||||
:endDetectBaseDir
|
||||
|
||||
set "jvmConfig=\.mvn\jvm.config"
|
||||
if not exist "%MAVEN_PROJECTBASEDIR%%jvmConfig%" goto endReadAdditionalConfig
|
||||
|
||||
@setlocal EnableExtensions EnableDelayedExpansion
|
||||
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||
|
||||
:endReadAdditionalConfig
|
||||
|
||||
for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set CLASSWORLDS_JAR="%%i"
|
||||
set CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
|
||||
"%JAVACMD%" ^
|
||||
%JVM_CONFIG_MAVEN_PROPS% ^
|
||||
%MAVEN_OPTS% ^
|
||||
%MAVEN_DEBUG_OPTS% ^
|
||||
-classpath %CLASSWORLDS_JAR% ^
|
||||
"-Dlogback.configurationFile=%MAVEN_HOME%\conf\logging\logback-mvn.xml" ^
|
||||
"-Dclassworlds.conf=%MAVEN_HOME%\bin\m2.conf" ^
|
||||
"-Dmvnd.home=%MAVEN_HOME%" ^
|
||||
"-Dmaven.home=%MAVEN_HOME%" ^
|
||||
"-Dlibrary.jansi.path=%MAVEN_HOME%\lib\jansi-native" ^
|
||||
"-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
|
||||
%CLASSWORLDS_LAUNCHER% %MAVEN_CMD_LINE_ARGS%
|
||||
if ERRORLEVEL 1 goto error
|
||||
goto end
|
||||
|
||||
:error
|
||||
set ERROR_CODE=1
|
||||
|
||||
:end
|
||||
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||
|
||||
if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
|
||||
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
|
||||
if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
|
||||
:skipRcPost
|
||||
|
||||
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||
if "%MAVEN_BATCH_PAUSE%"=="on" pause
|
||||
|
||||
if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE%
|
||||
|
||||
cmd /C exit /B %ERROR_CODE%
|
||||
@@ -1,42 +0,0 @@
|
||||
<!--
|
||||
|
||||
Copyright 2020 the original author or authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
|
||||
<!--
|
||||
| Local developer build logging configuration.
|
||||
| * console log shows overall info+ build messages and project errors
|
||||
| * overall build.log file includes all build log messages
|
||||
| * project-specific build.log files include corresponding project build log messages
|
||||
-->
|
||||
<configuration>
|
||||
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator" />
|
||||
|
||||
<!--
|
||||
| write project-specific build log messages to ${project.build.directory}/build.log files
|
||||
-->
|
||||
<appender name="CONSOLE" class="org.apache.maven.cli.logging.SimpleAppender" />
|
||||
|
||||
<logger name="Sisu" level="INFO" />
|
||||
|
||||
<!-- suppress annoying @threadSafe and checksum failure warning messages -->
|
||||
<logger name="org.apache.maven.lifecycle.internal.builder.BuilderCommon" level="ERROR" />
|
||||
<logger name="org.eclipse.aether.internal.impl.WarnChecksumPolicy" level="ERROR" />
|
||||
|
||||
<root level="${consoleLevel:-info}">
|
||||
<appender-ref ref="CONSOLE" />
|
||||
</root>
|
||||
</configuration>
|
||||
@@ -1,55 +0,0 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019 the original author or authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
|
||||
<!--
|
||||
| Local developer build logging configuration.
|
||||
| * console log shows overall info+ build messages and project errors
|
||||
| * overall build.log file includes all build log messages
|
||||
| * project-specific build.log files include corresponding project build log messages
|
||||
-->
|
||||
<configuration>
|
||||
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator" />
|
||||
|
||||
<!--
|
||||
| write project-specific build log messages to ${project.build.directory}/build.log files
|
||||
-->
|
||||
<appender name="MEM" class="org.jboss.fuse.mvnd.logging.smart.ProjectBuildLogAppender">
|
||||
<pattern>[%level] %msg%n</pattern>
|
||||
</appender>
|
||||
|
||||
<appender name="DAEMON" class="ch.qos.logback.core.FileAppender">
|
||||
<file>${mvnd.home}/daemon/daemon-${daemon.uid}.log</file>
|
||||
<encoder>
|
||||
<pattern>%d{HH:mm:ss.SSS} %.-1level %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<logger name="org.jboss.fuse.mvnd.daemon" level="DEBUG" additivity="false">
|
||||
<appender-ref ref="DAEMON" />
|
||||
</logger>
|
||||
|
||||
<logger name="Sisu" level="INFO" />
|
||||
|
||||
<!-- suppress annoying @threadSafe and checksum failure warning messages -->
|
||||
<logger name="org.apache.maven.lifecycle.internal.builder.BuilderCommon" level="ERROR" />
|
||||
<logger name="org.eclipse.aether.internal.impl.WarnChecksumPolicy" level="ERROR" />
|
||||
|
||||
<root level="${consoleLevel:-info}">
|
||||
<appender-ref ref="MEM" />
|
||||
</root>
|
||||
</configuration>
|
||||
@@ -1,85 +0,0 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019 the original author or authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
<assembly>
|
||||
|
||||
<artifactSet to="/mvn">
|
||||
<artifact id="org.apache.maven:apache-maven:tar.gz:bin">
|
||||
<unpack useRoot="false"
|
||||
excludes="lib/slf4j*,conf/logging/*,lib/maven-slf4j-provider*,bin/mvn*,lib/jansi-*.jar,lib/jansi-native/*"/>
|
||||
</artifact>
|
||||
</artifactSet>
|
||||
|
||||
<artifactSet to="/mvn/lib/ext">
|
||||
<artifact id="org.jboss.fuse.mvnd:mvnd-daemon:${project.version}">
|
||||
<exclusion id="org.codehaus.plexus:plexus-classworlds"/>
|
||||
<exclusion id="*:cdi-api"/>
|
||||
<exclusion id="*:commons-cli"/>
|
||||
<exclusion id="*:commons-io"/>
|
||||
<exclusion id="*:commons-lang3"/>
|
||||
<exclusion id="*:guava"/>
|
||||
<exclusion id="*:guice"/>
|
||||
<exclusion id="*:javax.inject"/>
|
||||
<exclusion id="*:jcl-over-slf4j"/>
|
||||
<exclusion id="*:jsr250-api"/>
|
||||
<exclusion id="*:maven-artifact"/>
|
||||
<exclusion id="*:maven-builder-support"/>
|
||||
<exclusion id="*:maven-core"/>
|
||||
<exclusion id="*:maven-embedder"/>
|
||||
<exclusion id="*:maven-model"/>
|
||||
<exclusion id="*:maven-model-builder"/>
|
||||
<exclusion id="*:maven-plugin-api"/>
|
||||
<exclusion id="*:maven-repository-metadata"/>
|
||||
<exclusion id="*:maven-resolver-api"/>
|
||||
<exclusion id="*:maven-resolver-impl"/>
|
||||
<exclusion id="*:maven-resolver-provider"/>
|
||||
<exclusion id="*:maven-resolver-spi"/>
|
||||
<exclusion id="*:maven-resolver-util"/>
|
||||
<exclusion id="*:maven-settings"/>
|
||||
<exclusion id="*:maven-settings-builder"/>
|
||||
<exclusion id="*:maven-shared-utils"/>
|
||||
<exclusion id="*:org.eclipse.sisu.inject"/>
|
||||
<exclusion id="*:org.eclipse.sisu.plexus"/>
|
||||
<exclusion id="*:plexus-cipher"/>
|
||||
<exclusion id="*:plexus-component-annotations"/>
|
||||
<exclusion id="*:plexus-interpolation"/>
|
||||
<exclusion id="*:plexus-sec-dispatcher"/>
|
||||
<exclusion id="*:plexus-utils"/>
|
||||
</artifact>
|
||||
<artifact id="org.jboss.fuse.mvnd:mvnd-client:${project.version}">
|
||||
<exclusion id="*:slf4j-simple"/>
|
||||
</artifact>
|
||||
</artifactSet>
|
||||
|
||||
<fileSet to="/">
|
||||
<directory path="${basedir}/src/main/distro"/>
|
||||
<directory path="${basedir}/..">
|
||||
<include>NOTICE.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
<include>README.adoc</include>
|
||||
</directory>
|
||||
</fileSet>
|
||||
<fileSet to="/bin">
|
||||
<directory path="${basedir}/../client/target">
|
||||
<include>mvnd</include>
|
||||
<include>mvnd.exe</include>
|
||||
</directory>
|
||||
</fileSet>
|
||||
|
||||
<archive name="mvnd-${project.version}-${os.detected.name}-${os.detected.arch}.zip" executable="**/bin/mvnd"/>
|
||||
|
||||
</assembly>
|
||||
Reference in New Issue
Block a user