-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #48 Split Mandelbrot-Tab into Mandelbrot-Julia and Mandelbrot-Zoom
- Loading branch information
1 parent
28e9278
commit 30659f6
Showing
2 changed files
with
25 additions
and
13 deletions.
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 |
---|---|---|
@@ -1,33 +1,45 @@ | ||
#!/usr/bin/env bash | ||
|
||
|
||
function site() { | ||
./mvnw -e clean install site site:deploy | ||
} | ||
|
||
function runGithubCi(){ | ||
./mvnw -B -DskipTests clean dependency:list install --file pom.xml | ||
} | ||
|
||
function makeRelease() { | ||
function makeReleaseDryRun() { | ||
./mvnw -DskipTests -Dresume=false -DdryRun=true release:prepare | ||
} | ||
|
||
function makeRelease() { | ||
makeReleaseDryRun | ||
./mvnw -DskipTests -Dresume=false release:prepare release:perform | ||
} | ||
|
||
function publishSite() { | ||
./mvnw clean install site site:stage scm-publish:publish-scm | ||
./mvnw site site:stage scm-publish:publish-scm | ||
} | ||
|
||
function run() { | ||
./mvnw dependency:purge-local-repository clean dependency:resolve dependency:resolve-plugins dependency:tree install | ||
#./mvnw site # site:deploy | ||
function site() { | ||
./mvnw -e site site:deploy | ||
} | ||
|
||
function main() { | ||
function buildClean() { | ||
./mvnw dependency:purge-local-repository clean | ||
} | ||
|
||
function buildResolve() { | ||
./mvnw dependency:resolve dependency:resolve-plugins dependency:tree | ||
} | ||
|
||
function build() { | ||
buildClean | ||
buildResolve | ||
./mvnw install | ||
#site | ||
} | ||
|
||
function main() { | ||
#runGithubCi | ||
#makeRelease | ||
run | ||
build | ||
} | ||
|
||
main |
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