./gradlew build -x test -x integrationTest -x spotlessJavaCheck -x checkstyleTestBy default only modules for one Spark/Flink/Scala versions are built. To get the full build, component versions need to be enumerated.
Source: https://gist.github.com/findepi/04c96f0f60dcc95329f569bb0c44a0cd .
This should build the project. In case of problems, retry without the -T flag.
This is not the fastest way to build the project though. See below.
./mvnw -T1C clean install -DskipTests | //Thank to @Formstone https://github.com/Formstone/Selecter/blob/master/src/jquery.fs.selecter.js | |
| if (window.document.createEvent) { // All | |
| var evt = window.document.createEvent("MouseEvents"); | |
| evt.initMouseEvent("mousedown", false, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); | |
| el.dispatchEvent(evt); | |
| } else if (el.fireEvent) { // IE | |
| el.fireEvent("onmousedown"); | |
| } |
| ## within current branch, squashes all commits that are ahead of master down into one | |
| ## useful if you merged with upstream in the middle of your commits (rebase could get very ugly if this is the case) | |
| ## commit any working changes on branch "mybranchname", then... | |
| git checkout master | |
| git checkout -b mybranchname_temp | |
| git merge --squash mybranchname | |
| git commit -am "Message describing all squashed commits" | |
| git branch -m mybranchname mybranchname_unsquashed | |
| git branch -m mybranchname |