Skip to content

Commit 3159296

Browse files
committed
1.1.1
1 parent d9174a8 commit 3159296

File tree

5 files changed

+7
-45
lines changed

5 files changed

+7
-45
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
*.iml
44

55
#maven
6-
target/
6+
target/
7+
dependency-reduced-pom.xml

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if (response.getError() == null) {
4343
System.out.println(error.getCode() + ": " + error.getMessage());
4444
}
4545
```
46-
Sortable fields can be found at the official API documentation [here](https://www.mc-market.org/wiki/ultimate-api-v1/).
46+
Sortable fields can be found at the official API documentation [here](https://www.mc-market.org/wiki/ultimate-api/).
4747

4848
# Jitpack Installation
4949
## Gradle
@@ -53,7 +53,7 @@ repositories {
5353
}
5454
5555
dependencies {
56-
implementation 'com.github.MC-Market-org:mcmarket-api-java-wrapper:VERSION'
56+
implementation 'com.github.swanis:mcmarket-api-java-wrapper:VERSION'
5757
}
5858
```
5959

@@ -67,7 +67,7 @@ dependencies {
6767
</repositories>
6868

6969
<dependency>
70-
<groupId>com.github.MC-Market-org</groupId>
70+
<groupId>com.github.swanis</groupId>
7171
<artifactId>mcmarket-api-java-wrapper</artifactId>
7272
<version>VERSION</version>
7373
</dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>is.swan</groupId>
88
<artifactId>mcmarket-api-java-wrapper</artifactId>
9-
<version>1.1-SNAPSHOT</version>
9+
<version>1.1.1-SNAPSHOT</version>
1010

1111
<properties>
1212
<maven.compiler.source>17</maven.compiler.source>

src/main/java/is/swan/mcmarketapi/request/requests/resource/license/RetrieveResourceLicenseByMemberRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public RetrieveResourceLicenseByMemberRequest(int resourceId, int memberId, int
1919

2020
@Override
2121
public String getURL() {
22-
return "https://api.mc-market.org/v1/resources/" + resourceId + "/licenses/member/" + memberId + "?nonce=" + nonce + "&timestamp=" + timestamp;
22+
return "https://api.mc-market.org/v1/resources/" + resourceId + "/licenses/members/" + memberId + "?nonce=" + nonce + "&timestamp=" + timestamp;
2323
}
2424

2525
@Override

src/main/java/is/swan/mcmarketapi/request/requests/resource/license/ValidateResourceLicenseRequest.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)