blob: 536cb99e27a4ad29e8ca034bd0cbca6e0c5d3cc4 [file] [log] [blame]
HIGUCHI Yuta88f3bf32013-06-20 10:37:47 -07001#!/bin/bash
2
3if [ -z "${MVN}" ]; then
4 MVN="mvn"
5fi
6
Yuta HIGUCHId62fb872014-01-02 10:40:32 -08007# Install Kryo2 workaround to local repo
8# - Shaded(rename package name to allow mixing 2 different Kryo version)
9# - Install created sharded jar to local repo
Yuta HIGUCHI5548a492013-10-24 00:39:23 -070010${MVN} -f kryo2/pom.xml package exec:exec
11
Yuta HIGUCHId62fb872014-01-02 10:40:32 -080012# Install modified curators to local repo
13${MVN} install:install-file -Dfile=./curator/curator-framework-1.3.5-SNAPSHOT.jar -DgroupId=com.netflix.curator -DartifactId=curator-framework -Dversion=1.3.5-SNAPSHOT -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=./repo -DcreateChecksum=true
14${MVN} install:install-file -Dfile=./curator/curator-client-1.3.5-SNAPSHOT.jar -DgroupId=com.netflix.curator -DartifactId=curator-client -Dversion=1.3.5-SNAPSHOT -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=./repo -DcreateChecksum=true
15${MVN} install:install-file -Dfile=./curator/curator-recipes-1.3.5-SNAPSHOT.jar -DgroupId=com.netflix.curator -DartifactId=curator-recipes -Dversion=1.3.5-SNAPSHOT -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=./repo -DcreateChecksum=true
16${MVN} install:install-file -Dfile=./curator/curator-x-discovery-1.3.5-SNAPSHOT.jar -DgroupId=com.netflix.curator -DartifactId=curator-x-discovery -Dversion=1.3.5-SNAPSHOT -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=./repo -DcreateChecksum=true
HIGUCHI Yuta88f3bf32013-06-20 10:37:47 -070017