Add note on how to build JAR files (#663)

This commit is contained in:
Torkel Rogstad 2019-07-31 01:52:51 +02:00 committed by Chris Stewart
parent f59d4007c3
commit cee2665d49
2 changed files with 9 additions and 3 deletions

View file

@ -1,5 +1,3 @@
import sbt.Credentials
import sbt.Keys.publishTo
import com.typesafe.sbt.SbtGit.GitKeys._
import scala.util.Properties

View file

@ -26,7 +26,7 @@ https://bitcoin-s.org/docs/getting-started
res4: String = "bc1q7ynsz7tamtnvlmts4snrl7e98jc9d8gqwsjsr5"
```
## Build tools
## Getting prebuilt JARs
If you want to add Bitcoin-S to your project, follow the
instructions for your build tool
@ -74,3 +74,11 @@ ${List.fill(3)("`").mkString /* Hacky solution to get around nesting backticks *
### Mill
TODO
## Building JARs yourself
If you want to build Bitcoin-S JARs yourself, you need to use the
[sbt](https://www.scala-sbt.org/) build tool. Once you have sbt
installed, run `sbt publishLocal`. This places the required JAR
files in your `.ivy2/local` folder. On Linux, this is located at
`$HOME/.ivy2/local/` by default.