2020-11-13 02:49:45 +05:30
|
|
|
plugins {
|
2021-12-29 18:34:49 +05:30
|
|
|
id "com.github.johnrengelman.shadow" version "7.1.2"
|
2020-11-13 02:49:45 +05:30
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
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-02-02 11:03:23 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:da0c4919d1ac2dee9d5227a5ddb9f26111804914'
|
2020-11-13 02:49:45 +05:30
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2021-12-20 18:36:48 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.1'
|
2021-12-20 19:10:38 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.1'
|
2021-12-20 18:36:50 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
|
2021-12-06 18:36:15 +05:30
|
|
|
implementation 'org.json:json:20211205'
|
2021-12-03 18:35:28 +05:30
|
|
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.5'
|
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'
|
2021-09-30 18:35:25 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.14.3'
|
2022-01-07 07:39:22 +05:30
|
|
|
implementation 'io.activej:activej-common:5.1'
|
2022-01-05 21:58:12 +05:30
|
|
|
implementation 'io.activej:activej-http:5.1'
|
2022-01-05 18:36:40 +05:30
|
|
|
implementation 'io.activej:activej-boot:5.1'
|
2022-01-05 21:58:16 +05:30
|
|
|
implementation 'io.activej:activej-specializer:5.1'
|
2022-01-07 07:39:38 +05:30
|
|
|
implementation 'io.activej:activej-launchers-http:5.1'
|
2021-12-12 01:17:40 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.6.1'
|
2022-02-02 18:37:14 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.3.2'
|
2022-01-26 18:35:41 +05:30
|
|
|
implementation 'org.hibernate:hibernate-core:5.6.5.Final'
|
2022-01-27 00:14:01 +05:30
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:5.6.5.Final'
|
2022-01-10 18:35:55 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2021-12-21 18:36:47 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:5.6.1'
|
2021-07-17 04:10:46 +05:30
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
2022-02-03 02:35:22 +05:30
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.3"))
|
|
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-brotli")
|
2020-11-13 02:49:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2021-02-05 21:36:05 +05:30
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|