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-08-12 06:53:25 +05:30
|
|
|
id "io.freefair.lombok" version "8.2.2"
|
2023-01-29 17:46:57 +05:30
|
|
|
id "eclipse"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-07-28 09:34:24 +05:30
|
|
|
implementation 'org.apache.commons:commons-lang3:3.13.0'
|
2023-01-29 17:46:57 +05:30
|
|
|
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-08-28 03:37:13 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:5518112dce594bb4cd07d8ed3391bcc5e688f829'
|
2023-08-04 17:37:38 +05:30
|
|
|
implementation 'com.github.FireMasterK:nanojson:9f4af3b739cc13f3d0d9d4b758bbe2b2ae7119d7'
|
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-03-18 23:31:39 +05:30
|
|
|
implementation 'org.postgresql:postgresql:42.6.0'
|
2023-07-21 05:55:21 +05:30
|
|
|
implementation 'org.hibernate:hibernate-core:6.2.7.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.2.7.Final'
|
2023-08-14 03:50:30 +05:30
|
|
|
implementation 'org.liquibase:liquibase-core:4.23.1'
|
2023-08-14 23:19:48 +05:30
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.23.1') { exclude group: 'org.liquibase' }
|
2023-01-29 17:46:57 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2023-08-22 03:43:38 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.1.3'
|
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-08-04 20:29:07 +05:30
|
|
|
implementation 'io.sentry:sentry:6.28.0'
|
2023-08-21 14:09:53 +05:30
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.10'
|
2023-08-18 07:25:14 +05:30
|
|
|
implementation 'io.minio:minio:8.5.5'
|
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
|