Add TorrentDownloadPlugin

This commit is contained in:
grimsi
2025-06-11 20:13:51 +02:00
parent 4072ff3dde
commit 60c83487dd
5 changed files with 249 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
plugins {
id("com.google.devtools.ksp")
}
repositories {
maven { setUrl("https://jitpack.io") }
maven { setUrl("https://repository.jboss.org") }
}
dependencies {
ksp("care.better.pf4j:pf4j-kotlin-symbol-processing:${rootProject.extra["pf4jKspVersion"]}")
// Torrent tracker & seeder
implementation("com.github.mpetazzoni:ttorrent:ttorrent-2.0") {
exclude(group = "org.slf4j")
}
// Torrent file builder
implementation("com.github.atomashpolskiy:bt-core:1.10") {
exclude(group = "org.slf4j")
}
}