Skip to content

Commit 53fb4a9

Browse files
Item.Builder & Reactive Items
1 parent e4fcda3 commit 53fb4a9

20 files changed

+1258
-82
lines changed

invui-kotlin/build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,20 @@ plugins {
33
kotlin("jvm") version "2.1.0"
44
}
55

6+
repositories {
7+
mavenLocal {
8+
content {
9+
@Suppress("UnstableApiUsage")
10+
includeGroupAndSubgroups("xyz.xenondevs")
11+
}
12+
}
13+
maven("https://repo.xenondevs.xyz/releases/")
14+
}
15+
616
dependencies {
717
api("org.jetbrains.kotlin:kotlin-stdlib:2.1.0")
818
api(project(":invui"))
19+
api("xyz.xenondevs.commons:commons-provider:1.21")
920
}
1021

1122
publishing {
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package xyz.xenondevs.invui
2+
3+
@RequiresOptIn
4+
annotation class ExperimentalReactiveApi()

0 commit comments

Comments
 (0)