9 lines
262 B
Bash
Executable File
9 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
rm -rf $(pwd)/.m2
|
|
|
|
export TYCHO_TARGET_PLATFORM=/usr/lib/eclipse
|
|
|
|
mvn-local -Dmaven.repo.local=$(pwd)/.m2 -Dmaven.local.debug=true -X -Dmaven.test.skip -Dsite.generation=true clean install 1>log1.txt 2>log2.txt || exit
|
|
|
|
tar caf maven-repo.tar.xz .m2
|