627ff82552
When %%bootstrap flag is set, Tycho will build without a BR on Eclipse or Tycho. This can be used to build when these packages are not yet on the buildroot. This requires a zipped reactor cache containing the dependencies that would have been provided by Tycho, and Eclipse.
7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
rm -rf $(pwd)/.m2
|
|
|
|
mvn-local -Dmaven.repo.local=$(pwd)/.m2 -Dmaven.local.debug=true -X -Dmaven.test.skip clean verify 1>log1.txt 2>log2.txt || exit
|
|
|
|
tar caf maven-repo.tar.xz .m2
|