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-07-28 04:04:24 +00:00
|
|
|
implementation 'org.apache.commons:commons-lang3:3.13.0'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'org.apache.commons:commons-text:1.10.0'
|
2023-09-29 22:23:57 +00:00
|
|
|
implementation 'commons-io:commons-io:2.14.0'
|
2023-03-07 22:19:35 +00:00
|
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.12'
|
2023-06-21 22:54:45 +00:00
|
|
|
implementation 'commons-codec:commons-codec:1.16.0'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
2023-10-10 21:43:36 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:48beff184a9792c4787cfa05fce577c3adf89f56'
|
2023-08-04 12:07:38 +00:00
|
|
|
implementation 'com.github.FireMasterK:nanojson:9f4af3b739cc13f3d0d9d4b758bbe2b2ae7119d7'
|
2023-05-31 01:51:02 +00:00
|
|
|
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 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-04-29 07:17:27 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.16.1'
|
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-03-18 18:01:39 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.6.0'
|
2023-09-19 11:18:57 +00:00
|
|
|
implementation 'org.hibernate:hibernate-core:6.3.1.Final'
|
|
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.3.1.Final'
|
2023-09-12 01:02:56 +00:00
|
|
|
implementation 'org.liquibase:liquibase-core:4.23.2'
|
2023-09-13 00:28:03 +00:00
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.23.2') { exclude group: 'org.liquibase' }
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
2023-09-18 18:25:40 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.1.4'
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.2'
|
2023-04-23 19:44:07 +00:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.11.0"))
|
2023-01-29 12:16:57 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
2023-09-28 09:24:37 +00:00
|
|
|
implementation 'io.sentry:sentry:6.30.0'
|
2023-08-31 15:59:36 +00:00
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.12'
|
2023-09-22 04:38:12 +00:00
|
|
|
implementation 'io.minio:minio:8.5.6'
|
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
|