/gradlew (cccdd3d517fc5249beaefa600691cf150f2fa3e6) (5296 bytes) (mode 100644) (type blob)

#!/usr/bin/env sh

##############################################################################
##
##  Gradle start up script for UN*X
##
##############################################################################

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
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
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn () {
    echo "$*"
}

die () {
    echo
    echo "$*"
    echo
    exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
  CYGWIN* )
    cygwin=true
    ;;
  Darwin* )
    darwin=true
    ;;
  MINGW* )
    msys=true
    ;;
  NONSTOP* )
    nonstop=true
    ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
    MAX_FD_LIMIT=`ulimit -H -n`
    if [ $? -eq 0 ] ; then
        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
            MAX_FD="$MAX_FD_LIMIT"
        fi
        ulimit -n $MAX_FD
        if [ $? -ne 0 ] ; then
            warn "Could not set maximum file descriptor limit: $MAX_FD"
        fi
    else
        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
    fi
fi

# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi

# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
    JAVACMD=`cygpath --unix "$JAVACMD"`

    # We build the pattern for arguments to be converted via cygpath
    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
    SEP=""
    for dir in $ROOTDIRSRAW ; do
        ROOTDIRS="$ROOTDIRS$SEP$dir"
        SEP="|"
    done
    OURCYGPATTERN="(^($ROOTDIRS))"
    # Add a user-defined pattern to the cygpath arguments
    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
    fi
    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    i=0
    for arg in "$@" ; do
        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option

        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
        else
            eval `echo args$i`="\"$arg\""
        fi
        i=$((i+1))
    done
    case $i in
        (0) set -- ;;
        (1) set -- "$args0" ;;
        (2) set -- "$args0" "$args1" ;;
        (3) set -- "$args0" "$args1" "$args2" ;;
        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
    esac
fi

# Escape application args
save () {
    for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
    echo " "
}
APP_ARGS=$(save "$@")

# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"

# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
  cd "$(dirname "$0")"
fi

exec "$JAVACMD" "$@"


Mode Type Size Ref File
100644 blob 1824 0e6477d39449644a27aa5eff5ef7170850da72de .dbeaver-data-sources.xml
100644 blob 309 1b68f0d496b830226ffa8639c0a9f80a4ceea0bb .gitignore
100644 blob 653 fc70cf39db9b88a8a0ae87dde39839ed925cf671 .project
100644 blob 527 6fa98bba55e5d7d7b9a68d5a6e1f4f80ef50eff4 Dockerfile
100644 blob 6179 ee6e212dcc1673b64867e100f15c0e04c32521f3 Jenkinsfile
100644 blob 101 c96be08c0f191458d581524dacbf2f49b0af23d5 README.md
100644 blob 4949 643ff83bc74c5a6f7af39b0a9eaa6e8d8a4152b6 build.gradle
100644 blob 20475 c8a11e310f7f0d607dae6bf91eb7da07f472c346 ch.qos.logback.classic.Logger.class
100644 blob 5840 e9821d352d5b246b4cc8da7c151b9e7c6e11e9e3 com.kingfisher.deployment.audit.rest.client.IIBRestClient.class
100644 blob 74 60f05f64aba6030ba1b150e19d8745c1ae3a989b gradle.properties
040000 tree - 1c1de0a110e0ed0c7edcf8d9e1cef9be2a0ca4aa gradle
100644 blob 5296 cccdd3d517fc5249beaefa600691cf150f2fa3e6 gradlew
100644 blob 2260 e95643d6a2ca62258464e83c72f5156dc941c609 gradlew.bat
040000 tree - 250610aaedde8b4bc0d2d2af52b22972017026c0 libs
100644 blob 46902 c4912421b6e1d2e394d82c927a785b8fd3eca50f org.springframework.asm.ClassReader.class
100644 blob 3830 3891fb8c6f8818f9b3cee0f05ab842ac26757d67 org.springframework.cglib.core.AbstractClassGenerator$ClassLoaderData.class
100644 blob 9599 9439af051cef71f08968b137cf97741826f383ec org.springframework.cglib.core.AbstractClassGenerator.class
100644 blob 1932 2000d297d2c92f2eb2f12e2966c546c18e5df5ec org.springframework.cglib.core.ClassNameReader.class
100644 blob 2048 535a98bfb47f8ea1d798238524010314f3dbff6d org.springframework.cglib.core.DefaultGeneratorStrategy.class
100644 blob 9928 77410a68a336e74fd6fdaaa7c8e12a09d980e87a org.springframework.cglib.core.KeyFactory$Generator.class
100644 blob 18023 24c97e43f3b54a2bd14b21971970349075061405 org.springframework.cglib.core.ReflectUtils.class
100644 blob 32508 052062e01b048c0e1ca24fdd0eb0a606829d5d15 org.springframework.cglib.proxy.Enhancer.class
100644 blob 2655 0d29cf1b1f5ccde90d5a05d916621b67ff9938d8 org.springframework.cglib.reflect.FastClass$Generator.class
100644 blob 2814 7767d991fceb0c62c3ca3cd66a7e41efb167215d org.springframework.context.annotation.ConfigurationClassEnhancer$BeanFactoryAwareGeneratorStrategy.class
100644 blob 3694 e699e26732f2de16d5e4f4b2525a87067a45965c org.springframework.http.HttpEntity.class
100644 blob 32584 5986575200a4c9d8c7a27da9402c326106621eba org.springframework.web.client.RestTemplate.class
100644 blob 45 0a2d590f6d69c33bbe7a0a7f1890e4ded54cf13d settings.gradle
040000 tree - 5f35ed6ffee897f4a24ffc2b5dd41ad5aa8a7e06 src
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/Sumangal-IN/deployment-audit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/Sumangal-IN/deployment-audit

Clone this repository using git:
git clone git://git.rocketgit.com/user/Sumangal-IN/deployment-audit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main