Skip to content

Commit

Permalink
Updated jackson-dataformat-csv buildscript with version 2.11.0 for ub… (
Browse files Browse the repository at this point in the history
ppc64le#1574)

* Updated jackson-dataformat-csv buildscript with version 2.11.0 for ubi8.3

* Updated script
  • Loading branch information
csrividya authored Feb 4, 2022
1 parent 3877624 commit df493bb
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions j/jackson-dataformat-csv/jackson-dataformat-csv_ubi8_3.sh
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.
Expand All @@ -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
Expand Down

0 comments on commit df493bb

Please sign in to comment.