2023-01-29 12:16:57 +00:00
|
|
|
plugins {
|
2023-03-20 22:32:47 +00:00
|
|
|
id "com.github.johnrengelman.shadow" version "8.1.1"
|
2023-01-29 12:16:57 +00:00
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-30 03:57:35 +00:00
|
|
|
implementation 'org.apache.commons:commons-lang3:3.14.0'
|
2023-11-30 03:55:48 +00:00
|
|
|
implementation 'org.apache.commons:commons-text:1.11.0'
|
2023-11-30 00:48:40 +00:00
|
|
|
implementation 'commons-io:commons-io:2.15.1'
|
2024-02-07 07:18:18 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.13'
|
2024-02-08 22:40:45 +00:00
|
|
|
implementation 'commons-codec:commons-codec:1.16.1'
|
2023-11-20 05:17:29 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
|
2024-03-13 16:13:11 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:dd308604877573860a265aa2577c6b96c92f8b32'
|
2023-08-04 12:07:38 +00:00
|
|
|
implementation 'com.github.FireMasterK:nanojson:9f4af3b739cc13f3d0d9d4b758bbe2b2ae7119d7'
|
2024-03-12 23:16:09 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.0'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.17.0'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
|
2023-03-12 16:31:56 +00:00
|
|
|
implementation 'com.rometools:rome:2.1.0'
|
2023-09-17 14:51:29 +00:00
|
|
|
implementation 'com.rometools:rome-modules:2.1.0'
|
2023-12-29 04:54:01 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.17.2'
|
2023-06-15 19:20:30 +00:00
|
|
|
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-10-07 05:26:59 +00:00
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.2'
|
2024-03-14 21:03:30 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.7.3'
|
2023-12-15 15:26:42 +00:00
|
|
|
implementation 'org.hibernate:hibernate-core:6.4.1.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final'
|
2024-02-07 18:55:43 +00:00
|
|
|
implementation 'org.liquibase:liquibase-core:4.26.0'
|
2024-03-13 16:31:19 +00:00
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.26.0') { exclude group: 'org.liquibase' }
|
2023-11-30 03:57:17 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.1.0'
|
2024-02-16 21:16:08 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.2.2'
|
2023-11-30 16:09:15 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.3.0'
|
2023-10-23 15:10:52 +00:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
2024-03-08 17:26:00 +00:00
|
|
|
implementation 'io.sentry:sentry:7.6.0'
|
2023-12-14 21:43:48 +00:00
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.13'
|
2024-03-03 05:05:15 +00:00
|
|
|
implementation 'io.minio:minio:8.5.9'
|
2023-09-27 03:53:41 +00:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
2023-01-29 12:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|
2023-09-19 22:58:20 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
|
|
targetCompatibility = JavaVersion.VERSION_21
|