2020-11-12 21:19:45 +00:00
|
|
|
plugins {
|
2021-04-27 06:46:10 +00:00
|
|
|
id "com.github.johnrengelman.shadow" version "7.0.0"
|
2020-11-12 21:19:45 +00:00
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-01-04 05:47:28 +00:00
|
|
|
jcenter()
|
2020-11-12 21:19:45 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-02 06:31:00 +00:00
|
|
|
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'
|
2021-05-26 05:46:13 +00:00
|
|
|
implementation 'commons-io:commons-io:2.9.0'
|
2021-03-29 09:12:15 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil:8.5.3'
|
2020-11-12 21:19:45 +00:00
|
|
|
implementation 'commons-codec:commons-codec:1.15'
|
2021-01-05 07:03:35 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.67'
|
2021-03-03 06:32:13 +00:00
|
|
|
implementation 'org.mongodb:mongodb-driver-sync:4.2.2'
|
2021-05-27 18:10:28 +00:00
|
|
|
implementation 'com.github.TeamNewPipe.NewPipeExtractor:NewPipeExtractor:v0.21.3'
|
2020-11-12 21:19:45 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2021-04-13 06:50:18 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
|
2021-04-13 08:34:56 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.3'
|
2021-04-13 06:50:22 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
|
2021-03-10 06:57:02 +00:00
|
|
|
implementation 'org.json:json:20210307'
|
2021-05-03 08:21:34 +00:00
|
|
|
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'
|
2021-03-04 14:14:52 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
2021-04-27 08:23:17 +00:00
|
|
|
implementation 'io.activej:activej-common:4.2'
|
2021-04-27 06:46:14 +00:00
|
|
|
implementation 'io.activej:activej-http:4.2'
|
2021-04-26 08:29:52 +00:00
|
|
|
implementation 'io.activej:activej-boot:4.2'
|
2021-04-26 10:30:14 +00:00
|
|
|
implementation 'io.activej:activej-specializer:4.2'
|
2021-04-26 08:29:54 +00:00
|
|
|
implementation 'io.activej:activej-launchers-http:4.2'
|
2021-03-23 06:52:50 +00:00
|
|
|
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'
|
2021-02-05 16:06:05 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|