Skip to content

Commit

Permalink
Issue #48 Split Mandelbrot-Tab into Mandelbrot-Julia and Mandelbrot-Zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Oct 10, 2020
1 parent 28e9278 commit 30659f6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
36 changes: 24 additions & 12 deletions build.sh
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
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


function site() {
./mvnw -e clean install site site:deploy
./mvnw -e site site:deploy
}

function runGithubCi(){
Expand Down

0 comments on commit 30659f6

Please sign in to comment.