2023-01-29 12:16:57 +00:00
|
|
|
plugins {
|
2023-02-27 21:01:00 +00:00
|
|
|
id "com.github.johnrengelman.shadow" version "8.1.0"
|
2023-01-29 12:16:57 +00:00
|
|
|
id "java"
|
2023-02-25 02:15:08 +00:00
|
|
|
id "io.freefair.lombok" version "6.6.3"
|
2023-01-29 12:16:57 +00:00
|
|
|
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'
|
|
|
|
implementation 'commons-io:commons-io:2.11.0'
|
2023-03-07 22:19:35 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.12'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'commons-codec:commons-codec:1.15'
|
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:85bff7662e56f5570dd0e5f8b666b4ffaf57a3b0'
|
2023-03-06 04:14:08 +00:00
|
|
|
implementation 'com.github.FireMasterK:nanojson:2431d2d6335a5b9795f0efdd3610e71540bfb93e'
|
2023-01-30 17:55:37 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
|
2023-03-12 16:31:56 +00:00
|
|
|
implementation 'com.rometools:rome:2.1.0'
|
2023-02-18 00:56:39 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.15.4'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'io.activej:activej-common:5.4.3'
|
|
|
|
implementation 'io.activej:activej-http:5.4.3'
|
|
|
|
implementation 'io.activej:activej-boot:5.4.3'
|
|
|
|
implementation 'io.activej:activej-specializer:5.4.3'
|
|
|
|
implementation 'io.activej:activej-launchers-http:5.4.3'
|
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.1'
|
2023-02-16 18:33:57 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.5.4'
|
2023-02-07 12:15:30 +00:00
|
|
|
implementation 'org.hibernate:hibernate-core:6.1.7.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.1.7.Final'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2023-02-21 16:52:30 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.0.2'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
2023-03-04 04:23:09 +00:00
|
|
|
implementation 'io.sentry:sentry:6.15.0'
|
2023-03-04 20:48:50 +00:00
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.2'
|
2023-02-16 18:33:51 +00:00
|
|
|
implementation 'io.minio:minio:8.5.2'
|
2023-01-29 12:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-09 13:00:37 +00:00
|
|
|
tasks.withType(JavaCompile).each {
|
|
|
|
it.options.compilerArgs.add('--enable-preview')
|
|
|
|
}
|
|
|
|
|
2023-01-29 12:16:57 +00:00
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2023-03-09 13:00:37 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_19
|
|
|
|
targetCompatibility = JavaVersion.VERSION_19
|