diff --git a/.gitignore b/.gitignore index 28ae4ee..f178bac 100644 --- a/.gitignore +++ b/.gitignore @@ -129,4 +129,6 @@ gradle-app.setting ### Gradle Patch ### **/build/ +gradle.properties + # End of https://www.gitignore.io/api/java,gradle,intellij \ No newline at end of file diff --git a/build.gradle b/build.gradle index 5afe16e..6c78668 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,6 @@ group 'io.rudefox' version isRelease ? gitVersion.call() : gitVersion.call() + "-SNAPSHOT" application { - applicationName 'rudefox-cold' mainClassName = 'io.rudefox.cold.RudefoxCold' } @@ -54,12 +53,14 @@ dependencies { publishing { publications { - jar(MavenPublication) { + distro(MavenPublication) { from components.java + artifact distZip + artifact distTar pom { name = 'Rudefox Burrow' description = 'Bitcoin offline seed generation and tools' - url = 'https://rudefox.io' + url = 'https://rudefox.io/burrow' developers { developer { name = 'B.J. Dweck' diff --git a/gradle.properties.sample b/gradle.properties.sample index d03d4cd..76f7f60 100644 --- a/gradle.properties.sample +++ b/gradle.properties.sample @@ -1,15 +1,2 @@ -# bitcoind connection info for integration testing -bitcoind_host=backend.sample.com -bitcoind_port=8332 -bitcoind_username=admin -bitcoind_password=l6RYSFfGHosjvHDfK_f7GSBkdGHk26fjHchZrJ87dSH= - -# public esplora URL for integration testing -esplora_url=http://backend.sample.com:8080 -esplora_testnet_url=http://backend.sample.com:8081/testnet/ - -# web server credentials for website deployment (use in the ':deployWebsite' task) -webserver_host=web.sample.com -webserver_user=http_admin -webserver_password=mycrazypassword -webserver_target_dir=/path/to/webroot/without-ending-slash \ No newline at end of file +rudefox_maven_username=john +rudefox_maven_password=mypassword \ No newline at end of file