Piped-Backend/build.gradle

54 lines
1.9 KiB
Groovy
Raw Normal View History

2020-11-12 21:19:45 +00:00
plugins {
id "com.github.johnrengelman.shadow" version "7.0.0"
2020-11-12 21:19:45 +00:00
id "java"
id "eclipse"
}
repositories {
mavenCentral()
2020-11-12 21:19:45 +00:00
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
2020-11-12 21:19:45 +00:00
implementation 'org.apache.commons:commons-text:1.9'
implementation 'commons-io:commons-io:2.9.0'
implementation 'it.unimi.dsi:fastutil-core:8.5.4'
2020-11-12 21:19:45 +00:00
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.bouncycastle:bcprov-jdk15on:1.68'
implementation 'org.mongodb:mongodb-driver-sync:4.2.2'
2021-05-30 21:59:27 +00:00
implementation 'com.github.TeamNewPipe.NewPipeExtractor:NewPipeExtractor:7e4332e0cfe1e62f5904ddfe60770094c936a17d'
2020-11-12 21:19:45 +00:00
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'org.json:json:20210307'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.2'
2020-11-12 21:19:45 +00:00
implementation 'com.rometools:rome:1.15.0'
2021-02-24 09:52:29 +00:00
implementation 'com.github.ipfs:java-ipfs-http-client:v1.3.3'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'io.activej:activej-common:4.2'
implementation 'io.activej:activej-http:4.3'
implementation 'io.activej:activej-boot:4.2'
implementation 'io.activej:activej-specializer:4.3'
implementation 'io.activej:activej-launchers-http:4.3'
implementation 'net.java.dev.jna:jna-platform:5.8.0'
2020-11-12 21:19:45 +00:00
}
shadowJar {
// minimize()
}
jar {
manifest {
attributes(
'Main-Class': 'me.kavin.piped.Main'
)
}
}
group = 'me.kavin.piped'
version = '1.0'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11