#!/usr/bin/env python from __future__ import print_function from os import path import sys home=sys.argv[1] dist=sys.argv[2] with open(path.join(home, '.jip_config'), "w") as out: print("""[repos:local] uri={0}/.m2/repository/ type=local [repos:central] uri=https://repo1.maven.org/maven2/ type=remote """.format(dist), file=out)