This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5,355 changed files
with
6,456 additions
and
508,097 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,3 +51,6 @@ hs_err_pid* | |
stat*.txt | ||
|
||
.idea | ||
|
||
scalastyle-output.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: scala | ||
sudo: false | ||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
scala: | ||
- 2.11.11 | ||
script: | ||
- mvn scalastyle:check | ||
- mvn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
targetFolder="target/scaladocs-bundle" | ||
mkdir -p "$targetFolder" | ||
|
||
for srcFolder in `find . -type d -name scaladocs`; do | ||
moduleName=$(basename $(dirname $(dirname $(dirname "$srcFolder")))) | ||
|
||
if [[ "$moduleName" == "." ]]; then | ||
moduleName="sansa-parent" | ||
fi | ||
|
||
cp -rf "$srcFolder" "$targetFolder/$moduleName" | ||
# echo "$ --- $moduleName"; | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.