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"
|
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-30 09:27:35 +05:30
|
|
|
implementation 'org.apache.commons:commons-lang3:3.14.0'
|
2023-11-30 09:25:48 +05:30
|
|
|
implementation 'org.apache.commons:commons-text:1.11.0'
|
2023-11-30 06:18:40 +05:30
|
|
|
implementation 'commons-io:commons-io:2.15.1'
|
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-11-20 10:47:29 +05:30
|
|
|
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
|
2023-11-24 23:18:10 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:77466ac61f4fda729e33f1cc796d9f00455c0b30'
|
2023-08-04 17:37:38 +05:30
|
|
|
implementation 'com.github.FireMasterK:nanojson:9f4af3b739cc13f3d0d9d4b758bbe2b2ae7119d7'
|
2023-11-16 07:21:45 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.16.0'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.16.0'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.0'
|
2023-03-12 22:01:56 +05:30
|
|
|
implementation 'com.rometools:rome:2.1.0'
|
2023-09-17 20:21:29 +05:30
|
|
|
implementation 'com.rometools:rome-modules:2.1.0'
|
2023-11-27 10:21:49 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.17.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-10-07 10:56:59 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.2'
|
2023-12-07 12:42:12 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.7.1'
|
2023-12-15 20:56:42 +05:30
|
|
|
implementation 'org.hibernate:hibernate-core:6.4.1.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final'
|
2023-11-15 06:35:25 +05:30
|
|
|
implementation 'org.liquibase:liquibase-core:4.25.0'
|
2023-11-17 05:06:34 +05:30
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.25.0') { exclude group: 'org.liquibase' }
|
2023-11-30 09:27:17 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.1.0'
|
2023-11-20 21:49:52 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.2.0'
|
2023-11-30 21:39:15 +05:30
|
|
|
implementation 'commons-logging:commons-logging:1.3.0'
|
2023-10-23 20:40:52 +05:30
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
2023-11-30 21:39:19 +05:30
|
|
|
implementation 'io.sentry:sentry:7.0.0'
|
2023-12-15 03:13:48 +05:30
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.13'
|
2023-11-15 07:22:36 +05:30
|
|
|
implementation 'io.minio:minio:8.5.7'
|
2023-09-27 09:23:41 +05:30
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
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-09-20 04:28:20 +05:30
|
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
|
|
targetCompatibility = JavaVersion.VERSION_21
|