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-09-07 12:59:11 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:d3706d852d6711e2dfccb87b5885638c6981dca8'
|
2022-09-07 01:22:15 +05:30
|
|
|
implementation 'com.github.FireMasterK:nanojson:5df3e81e87b791d01f132f376e4b7d4a1780f346'
|
2022-09-06 01:57:31 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
|
2022-09-05 21:41:46 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.4'
|
2022-09-06 01:57:28 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4'
|
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-09-01 20:52:00 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.15.3'
|
2022-09-06 22:16:22 +05:30
|
|
|
implementation 'io.activej:activej-common:5.4.2'
|
2022-09-07 01:21:27 +05:30
|
|
|
implementation 'io.activej:activej-http:5.4.2'
|
2022-09-06 21:49:54 +05:30
|
|
|
implementation 'io.activej:activej-boot:5.4.2'
|
2022-09-06 18:36:49 +05:30
|
|
|
implementation 'io.activej:activej-specializer:5.4.2'
|
2022-09-06 22:16:19 +05:30
|
|
|
implementation 'io.activej:activej-launchers-http:5.4.2'
|
2022-07-27 18:37:08 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.0'
|
2022-09-01 20:51:56 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.5.0'
|
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-08-16 18:35:55 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:5.7.3'
|
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'
|
2022-08-18 08:43:40 +05:30
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|