Skip to content

Commit bb836fb

Browse files
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # src/test/java/SDKTesting.java
2 parents 81dbeee + 53b2372 commit bb836fb

File tree

1 file changed

+41
-4
lines changed

1 file changed

+41
-4
lines changed

README.md

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,67 @@
22
[![](https://jitpack.io/v/CodeCLS/Lemon-Markets-Java-SDK.svg)](https://jitpack.io/#CodeCLS/Lemon-Markets-Java-SDK)
33

44
Hey there,
5-
this SDK is not developed by lemon.markets and the company is not afiliated with me.
6-
However, I enjoyed the API so much, that I decided to create a simple SDK for Java.
5+
I enjoyed the API so much, that I decided to create a simple SDK for Java.
76
I hope you enjoy it.
87

8+
--Mentioned on their Website: https://docs.lemon.markets/resources/community-sdks --
9+
910

1011
<H3>build.gradle implementation(Jitpack):</H3>
1112

13+
<H4>Jitpack implementation</H4>
14+
1215
```groovy
16+
17+
Gradle..
18+
1319
allprojects {
1420
repositories {
1521
maven { url 'https://jitpack.io' }
1622
}
1723
}
24+
```
25+
26+
27+
28+
```groovy
29+
30+
or...Maven...
31+
32+
<repositories>
33+
<repository>
34+
<id>jitpack.io</id>
35+
<url>https://jitpack.io</url>
36+
</repository>
37+
</repositories>
1838
1939
```
2040

41+
42+
<H4>Repo implementation</H4>
43+
44+
2145
```groovy
46+
Gradle...
2247
2348
dependencies {
2449
implementation 'com.github.CodeCLS:Lemon-Markets-Java-SDK:1.0.0.0'
2550
}
51+
```
52+
2653

54+
```groovy
55+
56+
or...Maven...
57+
58+
<dependency>
59+
<groupId>com.github.CodeCLS</groupId>
60+
<artifactId>Lemon-Markets-Java-SDK</artifactId>
61+
<version>Tag</version>
62+
</dependency>
2763
```
28-
<H3>__Setup Environment & Token__</H3>
64+
65+
<H3>Setup Environment & Token</H3>
2966

3067
1. __Choose your environment (Paper/Live)__
3168

@@ -38,7 +75,7 @@ TradingEnvironment.LIVE
3875
2. __Enter your token__
3976

4077
```java
41-
78+
4279
TradingApplication tradingApplication = new TradingApplication.Builder()
4380
.setEnvironment(TradingEnvironment.PAPER)
4481
.setToken("<TOKEN>");

0 commit comments

Comments
 (0)