NerdNu / SafeBuckets

GNU Lesser General Public License v3.0
3 stars 10 forks source link

Build instructions #21

Closed pryelluw closed 3 years ago

pryelluw commented 3 years ago

@totemo pez sent me this way:

Could you write up some build instructions? Thank you sir!

totemo commented 3 years ago

Clone the repo: git clone https://github.com/NerdNu/SafeBuckets

Ensure you have Maven installed.

Change to the SafeBuckets directory (containing pom.xml) and run mvn. JAR file is in the target/ directory.

totemo commented 3 years ago

Ah, looking at the pom.xml I guess it's possible you're running into problems with BlockStore. I'll update the README.md later and change the version in pom.xml to match the latest.

For now, download https://github.com/NerdNu/BlockStore/releases/download/v1.6.1/BlockStore-1.6.1.jar and install it into your local Maven repository with:

mvn install:install-file -DgroupId=net.sothatsit -DartifactId=blockstore -Dversion=1.6.1 -Dpackaging=jar -Dfile=Blockstore-1.6.1.jar
totemo commented 3 years ago

Updated README.md. Note that BlockStore is a runtime dependency. You can use the latest (v1.7.0) at run time. I haven't bothered to update SafeBuckets/pom.xml yet because then I'd have to do a whole new release.