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-06-28 07:26:05 +05:30
|
|
|
id "io.freefair.lombok" version "8.1.0"
|
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-04 18:43:08 +05:30
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:88ceba0da4a48b5f4ffecb3b5b2f36f95ec53afe'
|
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-05-31 11:06:42 +05:30
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.2'
|
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-01-29 17:46:57 +05:30
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2023-07-18 04:28:25 +05:30
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.1.2'
|
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-07-26 15:15:51 +05:30
|
|
|
implementation 'io.sentry:sentry:6.27.0'
|
2023-08-04 18:43:22 +05:30
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.7'
|
2023-06-20 15:09:14 +05:30
|
|
|
implementation 'io.minio:minio:8.5.4'
|
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
|