2020-11-13 02:49:45 +05:30
|
|
|
plugins {
|
2022-04-24 22:31:00 +05:30
|
|
|
id "com.github.johnrengelman.shadow" version "7.1.2"
|
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
2020-11-13 02:49:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-05-28 02:22:55 +05:30
|
|
|
mavenCentral()
|
2020-11-13 02:49:45 +05:30
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-02 12:01:00 +05:30
|
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
2020-11-13 02:49:45 +05:30
|
|
|
implementation 'org.apache.commons:commons-text:1.9'
|
2021-07-14 18:34:48 +05:30
|
|
|
implementation 'commons-io:commons-io:2.11.0'
|
2022-02-11 19:11:50 +05:30
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.8'
|
2020-11-13 02:49:45 +05:30
|
|
|
implementation 'commons-codec:commons-codec:1.15'
|
2021-12-01 18:34:38 +05:30
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
2022-08-12 19:17:51 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:efeaee372e16bc9e6495f28e9967385962cbcb30'
|
2020-11-13 02:49:45 +05:30
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2022-05-16 19:57:31 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'
|
2022-05-16 18:44:13 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.3'
|
2022-05-16 18:35:14 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
|
2022-05-13 00:53:21 +05:30
|
|
|
implementation 'org.json:json:20220320'
|
2022-05-27 18:37:10 +05:30
|
|
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.1'
|
2021-12-29 18:34:44 +05:30
|
|
|
implementation 'com.rometools:rome:1.18.0'
|
2021-02-24 15:22:29 +05:30
|
|
|
implementation 'com.github.ipfs:java-ipfs-http-client:v1.3.3'
|
2022-07-04 18:38:37 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.15.2'
|
2022-06-21 01:55:40 +05:30
|
|
|
implementation 'io.activej:activej-common:5.3'
|
2022-06-20 18:38:10 +05:30
|
|
|
implementation 'io.activej:activej-http:5.3'
|
2022-06-21 01:58:19 +05:30
|
|
|
implementation 'io.activej:activej-boot:5.3'
|
2022-06-21 01:55:22 +05:30
|
|
|
implementation 'io.activej:activej-specializer:5.3'
|
2022-06-20 18:38:14 +05:30
|
|
|
implementation 'io.activej:activej-launchers-http:5.3'
|
2022-07-27 18:37:08 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.0'
|
2022-08-03 19:31:06 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.4.1'
|
2022-06-17 21:07:10 +05:30
|
|
|
implementation 'org.hibernate:hibernate-core:6.1.0.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.1.0.Final'
|
2022-01-10 18:35:55 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2022-06-21 18:34:36 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:5.7.2'
|
2021-07-17 04:10:46 +05:30
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
2022-06-13 18:40:35 +05:30
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
|
2022-02-03 02:35:22 +05:30
|
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-brotli")
|
2020-11-13 02:49:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2022-04-24 22:31:00 +05:30
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
2020-11-13 02:49:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2021-02-05 21:36:05 +05:30
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|