forked from ppc64le/build-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated jackson-dataformat-csv buildscript with version 2.11.0 for ub… (
ppc64le#1574) * Updated jackson-dataformat-csv buildscript with version 2.11.0 for ubi8.3 * Updated script
- Loading branch information
Showing
1 changed file
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
#!/bin/bash -e | ||
# ---------------------------------------------------------------------------- | ||
# | ||
# Package : jackson-dataformat-csv | ||
# Version : jackson-dataformats-text-2.10.5 | ||
# Language : Java | ||
# Source repo : https://github.com/FasterXML/jackson-dataformats-text | ||
# Tested on : UBI 8.3 | ||
# Script License: Apache-2.0 License | ||
# Maintainer : Varsha Aaynure <[email protected]> | ||
# Package : jackson-dataformat-csv | ||
# Version : jackson-dataformats-text-2.10.5, jackson-dataformats-text-2.11.0 | ||
# Language : Java | ||
# Source repo : https://github.com/FasterXML/jackson-dataformats-text | ||
# Tested on : UBI 8.3 | ||
# Language : Java | ||
# Travis-Check : True | ||
# Script License : Apache-2.0 License | ||
# Maintainer : Varsha Aaynure <[email protected]> | ||
# | ||
# Disclaimer: This script has been tested in root mode on given | ||
# ========== platform using the mentioned version of the package. | ||
|
@@ -15,18 +18,22 @@ | |
# contact "Maintainer" of this script. | ||
# | ||
# ---------------------------------------------------------------------------- | ||
#!/bin/bash | ||
|
||
#Variables | ||
PACKAGE_NAME=jackson-dataformats-text | ||
PACKAGE_URL=https://github.com/FasterXML/jackson-dataformats-text.git | ||
PACKAGE_VERSION=${1:-jackson-dataformats-text-2.10.5} | ||
PACKAGE_VERSION=jackson-dataformats-text-2.10.5 | ||
|
||
echo "Usage: $0 [-v <PACKAGE_VERSION>]" | ||
echo "PACKAGE_VERSION is an optional paramater whose default value is jackson-dataformats-text-2.10.5, not all versions are supported." | ||
PACKAGE_VERSION="${1:-$PACKAGE_VERSION}" | ||
|
||
#Install required files | ||
yum install -y git maven | ||
|
||
#Cloning Repo | ||
git clone $PACKAGE_URL | ||
cd jackson-dataformats-text/ | ||
cd $PACKAGE_NAME | ||
git checkout $PACKAGE_VERSION | ||
|
||
#Build test package | ||
|