2020-11-12 21:19:45 +00:00
|
|
|
plugins {
|
2021-10-05 13:05:07 +00:00
|
|
|
id "com.github.johnrengelman.shadow" version "7.1.0"
|
2020-11-12 21:19:45 +00:00
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-05-27 20:52:55 +00:00
|
|
|
mavenCentral()
|
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-07-14 13:04:48 +00:00
|
|
|
implementation 'commons-io:commons-io:2.11.0'
|
2021-09-14 13:05:39 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.6'
|
2020-11-12 21:19:45 +00:00
|
|
|
implementation 'commons-codec:commons-codec:1.15'
|
2021-12-01 13:04:38 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
2021-10-03 20:39:35 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:5333b574e2c337abf26154263e70d5c81d514c23'
|
2020-11-12 21:19:45 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2021-10-01 13:07:03 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
|
2021-10-01 17:51:56 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
|
2021-10-01 13:07:05 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
|
2021-03-10 06:57:02 +00:00
|
|
|
implementation 'org.json:json:20210307'
|
2021-09-13 13:06:07 +00:00
|
|
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.4'
|
2021-07-07 13:05:04 +00:00
|
|
|
implementation 'com.rometools:rome:1.16.0'
|
2021-02-24 09:52:29 +00:00
|
|
|
implementation 'com.github.ipfs:java-ipfs-http-client:v1.3.3'
|
2021-09-30 13:05:25 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.14.3'
|
2021-10-29 15:28:47 +00:00
|
|
|
implementation 'io.activej:activej-common:5.0'
|
|
|
|
implementation 'io.activej:activej-http:5.0'
|
|
|
|
implementation 'io.activej:activej-boot:5.0'
|
|
|
|
implementation 'io.activej:activej-specializer:5.0'
|
|
|
|
implementation 'io.activej:activej-launchers-http:5.0'
|
2021-11-01 13:05:13 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.3.1'
|
2021-11-08 14:37:03 +00:00
|
|
|
implementation 'org.hibernate:hibernate-core:5.6.1.Final'
|
2021-11-08 20:02:18 +00:00
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:5.6.1.Final'
|
2021-07-18 13:41:45 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.0'
|
2021-11-16 13:05:31 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:5.6.0'
|
2021-07-16 22:40:46 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
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
|