#!/bin/sh -e
# Copyright (c) 2013 Red Hat, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the
#    distribution.
# 3. Neither the name of Red Hat nor the names of its
#    contributors may be used to endorse or promote products derived
#    from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Mikolaj Izdebski <mizdebsk@redhat.com>

echo "***************************************************************" >&2
echo "* WARNING!  mvn-rpmbuild is deprecated and it will be removed *" >&2
echo "* in future.  Users should migrate to using %mvn_build macro  *" >&2
echo "* or call XMvn directly if greater flexibility is required.   *" >&2
echo "***************************************************************" >&2

# Support local depmaps
depmap=
for arg in "$@"; do
    if egrep -q '^-Dmaven\.local\.depmap\.file=' <<<"$arg"; then
	depmap=$(sed 's/[^=]*=//' <<<"$arg")

	mkdir -p .xmvn/config.d
	cat >>.xmvn/config.d/mvn-rpmbuild-config.xml <<EOF
<configuration>
  <resolverSettings>
    <metadataRepositories>
      <repository>$depmap</repository>
    </metadataRepositories>
  </resolverSettings>
</configuration>
EOF
    fi
done

# Local repository
repo=".m2"
repo_arg="-Dmaven.repo.local=$PWD/.m2/"
for arg in "$@"; do
    if egrep -q '^-Dmaven\.repo\.local=' <<<"$arg"; then
	repo_arg=
	repo=$(sed 's/[^=]*=//' <<<"$arg")
    fi
done

export MAVEN_OPTS="$MAVEN_OPTS $repo_arg"

# Allow -Dmaven.local.effective.pom=false to be used to disable
# resolution from effective POM repository.
XMVN_COMPAT=20-rpmbuild
for arg in "$@"; do
    if egrep -q '^-Dmaven\.local\.effective\.pom=false' <<<"$arg"; then
	XMVN_COMPAT=20-rpmbuild-raw
    fi
done
export XMVN_COMPAT

# Install maven metadata for plugins in groups org.apache.maven.plugins
# and org.codehaus.mojo. This is to allow plugins in these groups to be
# used without giving groupId prefix.
for groupId in org/apache/maven/plugins org/codehaus/mojo; do
    mkdir -p "$repo"/${groupId}
    ln -sf "/opt/rh/maven30/root/etc"/maven/metadata-${groupId////-}.xml \
        "$repo"/${groupId}/maven-metadata-central.xml
done

exec xmvn \
    --offline \
    --batch-mode \
    "${@}"
