-
Notifications
You must be signed in to change notification settings - Fork 28
How to add SteemJ to your project
This page shows several ways how to include SteemJ into your project.
TOC
If you use the Maven-assembly plugin. To add SteemJ to your Maven project simply add the following dependency in your pom.xml.
[...]
<dependency>
<groupId>eu.bittrade.libs</groupId>
<artifactId>steemj-core</artifactId>
<version>0.4.3</version>
</dependency>
[...]
To add SteemJ to your Ivy project simply add the following dependency in your ivy.xml.
[...]
<dependency org="eu.bittrade.libs" name="steemj-core" rev="0.4.3" />
[...]
To add SteemJ to your Gradle project simply add the following dependency in your build.gradle.
[...]
compile 'eu.bittrade.libs:steemj-core:0.4.3'
[...]
To add SteemJ to your Scala project simply add the following code to your project.
[...]
libraryDependencies += "eu.bittrade.libs" % "steemj-core" % "0.4.3"
[...]
To add SteemJ to your Groovy project the dependency manager Grape can be used. Simply add the @Grap annotation in to the class where you need SteemJ.
[...]
@Grab(group='eu.bittrade.libs', module='steemj-core', version='0.4.3')
[...]
To add SteemJ to your Ivy project simply add the following dependency in your project.clj.
[...]
[eu.bittrade.libs/steemj-core "0.4.3"]
[...]
If you have a good reason to do not use a build management / dependency management tool, you can also download the JAR on your own and add it to the classpath. The JAR should be added to every single on the release page and can also be found on several Maven Reposirtory pages like mvnrepository.com.
This project is developed by dez1337