2020-11-12 21:19:45 +00:00
|
|
|
plugins {
|
2022-04-24 17:01:00 +00:00
|
|
|
id "com.github.johnrengelman.shadow" version "7.1.2"
|
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
2020-11-12 21:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
2022-02-11 13:41:50 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.8'
|
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'
|
2022-08-29 18:48:05 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:10212f94abd1f310989633534280bdf6c91e64ec'
|
2022-09-06 19:52:15 +00:00
|
|
|
implementation 'com.github.FireMasterK:nanojson:5df3e81e87b791d01f132f376e4b7d4a1780f346'
|
2022-09-05 20:27:31 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
|
2022-09-05 16:11:46 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.4'
|
2022-09-05 20:27:28 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4'
|
2022-05-12 19:23:21 +00:00
|
|
|
implementation 'org.json:json:20220320'
|
2022-05-27 13:07:10 +00:00
|
|
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.1'
|
2021-12-29 13:04:44 +00:00
|
|
|
implementation 'com.rometools:rome:1.18.0'
|
2021-02-24 09:52:29 +00:00
|
|
|
implementation 'com.github.ipfs:java-ipfs-http-client:v1.3.3'
|
2022-09-01 15:22:00 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.15.3'
|
2022-09-06 16:46:22 +00:00
|
|
|
implementation 'io.activej:activej-common:5.4.2'
|
2022-09-01 15:21:01 +00:00
|
|
|
implementation 'io.activej:activej-http:5.4.1'
|
2022-09-06 16:19:54 +00:00
|
|
|
implementation 'io.activej:activej-boot:5.4.2'
|
2022-09-06 13:06:49 +00:00
|
|
|
implementation 'io.activej:activej-specializer:5.4.2'
|
2022-09-06 16:46:19 +00:00
|
|
|
implementation 'io.activej:activej-launchers-http:5.4.2'
|
2022-07-27 13:07:08 +00:00
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.0'
|
2022-09-01 15:21:56 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.5.0'
|
2022-06-17 15:37:10 +00:00
|
|
|
implementation 'org.hibernate:hibernate-core:6.1.0.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.1.0.Final'
|
2022-01-10 13:05:55 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2022-08-16 13:05:55 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:5.7.3'
|
2021-07-16 22:40:46 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
2022-06-13 13:10:35 +00:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
|
2022-02-02 21:05:22 +00:00
|
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-brotli")
|
2020-11-12 21:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2022-04-24 17:01:00 +00:00
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
2020-11-12 21:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2022-08-18 03:13:40 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|