Skip to content

Commit

Permalink
More tests for BM-16 BM-17
Browse files Browse the repository at this point in the history
  • Loading branch information
conalllaverty committed Jun 30, 2017
1 parent ad414cb commit 41fd8fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions maven-central-deploy.sh
@@ -0,0 +1,12 @@
!/bin/bash
# Deploy maven artefact in current directory into Maven central repository
# using maven-release-plugin goals
read -p "Really deploy to maven central repository (yes/no)? "
if ( [ "$REPLY" == "yes" ] ) then
ssh-add ~/.ssh/lubos.krnac
ssh-add -l
mvn release:clean release:prepare release:perform -B -e | tee maven-central-deploy.log
ssh-add -D
else
echo 'Exit without deploy'
fi
2 changes: 1 addition & 1 deletion src/test/java/io/wia/WiaStreamTest.java
Expand Up @@ -253,4 +253,4 @@ public void testDevicePublishLocations() throws WiaException, InterruptedExcepti
Thread.sleep(100);
}
}
}
}

0 comments on commit 41fd8fb

Please sign in to comment.