Piped-Backend/build.gradle

62 lines
2.4 KiB
Groovy
Raw Normal View History

2020-11-12 21:19:45 +00:00
plugins {
2022-04-24 17:01:00 +00:00
id "com.github.johnrengelman.shadow" version "7.1.2"
id "java"
id "eclipse"
2020-11-12 21:19:45 +00:00
}
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.11.0'
implementation 'it.unimi.dsi:fastutil-core:8.5.8'
2020-11-12 21:19:45 +00:00
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
2022-08-12 13:47:51 +00:00
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:efeaee372e16bc9e6495f28e9967385962cbcb30'
2020-11-12 21:19:45 +00:00
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
2022-05-12 19:23:21 +00:00
implementation 'org.json:json:20220320'
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.1'
implementation 'com.rometools:rome:1.18.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.15.2'
implementation 'io.activej:activej-common:5.3'
implementation 'io.activej:activej-http:5.3'
implementation 'io.activej:activej-boot:5.3'
implementation 'io.activej:activej-specializer:5.3'
implementation 'io.activej:activej-launchers-http:5.3'
implementation 'org.hsqldb:hsqldb:2.7.0'
implementation 'org.postgresql:postgresql:42.4.1'
2022-06-17 15:37:10 +00:00
implementation 'org.hibernate:hibernate-core:6.1.0.Final'
implementation 'org.hibernate:hibernate-hikaricp:6.1.0.Final'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'org.springframework.security:spring-security-crypto:5.7.2'
implementation 'commons-logging:commons-logging:1.2'
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
implementation("com.squareup.okhttp3:okhttp")
implementation("com.squareup.okhttp3:okhttp-brotli")
2020-11-12 21:19:45 +00:00
}
shadowJar {
// minimize()
}
jar {
2022-04-24 17:01:00 +00:00
manifest {
attributes(
'Main-Class': 'me.kavin.piped.Main'
)
}
2020-11-12 21:19:45 +00:00
}
group = 'me.kavin.piped'
version = '1.0'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11