Skip to content

Commit 6437f0e

Browse files
committed
Update dependencies and module exports for 1.7.1
1 parent b028c0a commit 6437f0e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ How to include the API with Maven:
1313
<dependency>
1414
<groupId>net.thenextlvl</groupId>
1515
<artifactId>vault-api</artifactId>
16-
<version>1.7</version>
16+
<version>1.7.1</version>
1717
<scope>provided</scope>
1818
</dependency>
1919
</dependencies>
@@ -26,7 +26,7 @@ repositories {
2626
maven { url 'https://repo.thenextlvl.net/releases' }
2727
}
2828
dependencies {
29-
compileOnly "net.thenextlvl:vault-api:1.7"
29+
compileOnly "net.thenextlvl:vault-api:1.7.1"
3030
}
3131
```
3232

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tasks.compileJava {
2222
}
2323

2424
group = "net.thenextlvl.vault"
25-
version = "1.7"
25+
version = "1.7.1"
2626

2727
tasks.withType<Javadoc>().configureEach {
2828
val options = options as StandardJavadocDocletOptions

src/main/java/module-info.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
// @NullMarked
44
module net.thenextlvl.vault {
5+
exports net.milkbowl.vault.chat;
6+
exports net.milkbowl.vault.economy;
7+
exports net.milkbowl.vault.permission;
8+
59
requires java.logging;
610
requires org.bukkit;
7-
11+
812
requires static org.jspecify;
913
}

0 commit comments

Comments
 (0)