Added distro publication

master
B.J. Dweck 2020-09-01 16:04:28 +02:00
parent 47d27920d4
commit ac99468a9d
3 changed files with 8 additions and 18 deletions

2
.gitignore vendored
View File

@ -129,4 +129,6 @@ gradle-app.setting
### Gradle Patch ### ### Gradle Patch ###
**/build/ **/build/
gradle.properties
# End of https://www.gitignore.io/api/java,gradle,intellij # End of https://www.gitignore.io/api/java,gradle,intellij

View File

@ -23,7 +23,6 @@ group 'io.rudefox'
version isRelease ? gitVersion.call() : gitVersion.call() + "-SNAPSHOT" version isRelease ? gitVersion.call() : gitVersion.call() + "-SNAPSHOT"
application { application {
applicationName 'rudefox-cold'
mainClassName = 'io.rudefox.cold.RudefoxCold' mainClassName = 'io.rudefox.cold.RudefoxCold'
} }
@ -54,12 +53,14 @@ dependencies {
publishing { publishing {
publications { publications {
jar(MavenPublication) { distro(MavenPublication) {
from components.java from components.java
artifact distZip
artifact distTar
pom { pom {
name = 'Rudefox Burrow' name = 'Rudefox Burrow'
description = 'Bitcoin offline seed generation and tools' description = 'Bitcoin offline seed generation and tools'
url = 'https://rudefox.io' url = 'https://rudefox.io/burrow'
developers { developers {
developer { developer {
name = 'B.J. Dweck' name = 'B.J. Dweck'

View File

@ -1,15 +1,2 @@
# bitcoind connection info for integration testing rudefox_maven_username=john
bitcoind_host=backend.sample.com rudefox_maven_password=mypassword
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