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'
|
2024-04-26 19:55:02 +00:00
|
|
|
implementation 'org.apache.commons:commons-text:1.12.0'
|
2024-04-08 20:41:34 +00:00
|
|
|
implementation 'commons-io:commons-io:2.16.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'
|
2024-04-25 18:19:12 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1'
|
2024-04-25 18:12:11 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:fcb1d28f5b7c5c2dd74f54b047c4978cc672a66c'
|
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-04-26 20:11:32 +00:00
|
|
|
implementation 'org.liquibase:liquibase-core:4.27.0'
|
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.27.0') { exclude group: 'org.liquibase' }
|
2023-11-30 03:57:17 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.1.0'
|
2024-04-15 20:20:51 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.2.4'
|
2024-03-24 15:42:20 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.3.1'
|
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-04-09 14:46:23 +00:00
|
|
|
implementation 'io.sentry:sentry:7.8.0'
|
2024-04-02 14:32:37 +00:00
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.14'
|
2024-04-25 21:14:05 +00:00
|
|
|
implementation 'io.minio:minio:8.5.10'
|
2024-03-20 01:38:39 +00:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.32'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.32'
|
2023-01-29 12:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-25 18:12:26 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
|
|
}
|
|
|
|
|
2023-01-29 12:16:57 +00:00
|
|
|
group = 'me.kavin.piped'
|
|
|
|
version = '1.0'
|