2023-01-29 17:46:57 +05:30
|
|
|
plugins {
|
2023-03-21 04:02:47 +05:30
|
|
|
id "com.github.johnrengelman.shadow" version "8.1.1"
|
2023-01-29 17:46:57 +05:30
|
|
|
id "java"
|
2023-03-21 09:46:52 +05:30
|
|
|
id "io.freefair.lombok" version "8.0.1"
|
2023-01-29 17:46:57 +05:30
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
|
|
|
implementation 'org.apache.commons:commons-text:1.10.0'
|
2023-05-17 03:39:11 +05:30
|
|
|
implementation 'commons-io:commons-io:2.12.0'
|
2023-03-08 03:49:35 +05:30
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.12'
|
2023-06-22 04:24:45 +05:30
|
|
|
implementation 'commons-codec:commons-codec:1.16.0'
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
2023-06-05 12:44:07 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:4ab4bf51ca6e924945a071d359b1ee5cdf9c7605'
|
2023-03-17 18:19:37 +05:30
|
|
|
implementation 'com.github.FireMasterK:nanojson:01934924442edda6952f3bedf80ba9e969cba8bc'
|
2023-05-31 07:21:02 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.15.2'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.15.2'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
|
2023-03-12 22:01:56 +05:30
|
|
|
implementation 'com.rometools:rome:2.1.0'
|
2023-04-29 12:47:27 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.16.1'
|
2023-06-16 00:50:30 +05:30
|
|
|
implementation 'io.activej:activej-common:5.5'
|
|
|
|
implementation 'io.activej:activej-http:5.5'
|
|
|
|
implementation 'io.activej:activej-boot:5.5'
|
|
|
|
implementation 'io.activej:activej-specializer:5.5'
|
|
|
|
implementation 'io.activej:activej-launchers-http:5.5'
|
2023-05-31 11:06:42 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.2'
|
2023-03-18 23:31:39 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.6.0'
|
2023-06-15 18:03:46 +05:30
|
|
|
implementation 'org.hibernate:hibernate-core:6.2.5.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.2.5.Final'
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2023-06-19 22:16:08 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.1.1'
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
2023-04-24 01:14:07 +05:30
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.11.0"))
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
2023-06-22 21:59:27 +05:30
|
|
|
implementation 'io.sentry:sentry:6.24.0'
|
2023-06-06 05:01:34 +05:30
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.4'
|
2023-06-20 15:09:14 +05:30
|
|
|
implementation 'io.minio:minio:8.5.4'
|
2023-01-29 17:46:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2023-04-27 17:35:05 +05:30
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|