-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
247d208
commit 486df94
Showing
7 changed files
with
46 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
taboolib { subproject = true } | ||
taboolib { subproject = true } | ||
|
||
dependencies { | ||
compileOnly(project(":common")) | ||
} | ||
gradle.buildFinished { | ||
buildDir.deleteRecursively() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
taboolib { subproject = true } | ||
taboolib { subproject = true } | ||
|
||
gradle.buildFinished { | ||
buildDir.deleteRecursively() | ||
} |
23 changes: 23 additions & 0 deletions
23
common/src/main/kotlin/me/regadpole/plumbot/Dependencies.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package me.regadpole.plumbot | ||
|
||
import taboolib.common.env.RuntimeDependencies | ||
import taboolib.common.env.RuntimeDependency | ||
|
||
@RuntimeDependencies( | ||
RuntimeDependency(value = "org.java-websocket:Java-WebSocket:1.5.5"), | ||
RuntimeDependency(value = "org.java-websocket:Java-WebSocket:1.5.7"), | ||
RuntimeDependency(value = "org.slf4j:slf4j-api:1.7.36"), | ||
RuntimeDependency(value = "uk.org.lidalia:sysout-over-slf4j:1.0.2"), | ||
RuntimeDependency(value = "net.kyori:event-method:3.0.0"), | ||
RuntimeDependency(value = "net.kyori:event-api:3.0.0"), | ||
RuntimeDependency(value = "org.checkerframework:checker-qual:2.5.4"), | ||
RuntimeDependency(value = "org.yaml:snakeyaml:2.0"), | ||
RuntimeDependency(value = "org.apache.logging.log4j:log4j-core:2.14.1"), | ||
RuntimeDependency(value = "org.junit.platform:junit-platform-engine:1.11.0"), | ||
RuntimeDependency( | ||
value = "com.github.RegadPoleCN:onebot-client:f73b158fc4", | ||
repository = "https://jitpack.io" | ||
) | ||
) | ||
object Dependencies { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters