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'
|
2023-11-30 03:55:48 +00:00
|
|
|
implementation 'org.apache.commons:commons-text:1.11.0'
|
2023-11-30 00:48:40 +00:00
|
|
|
implementation 'commons-io:commons-io:2.15.1'
|
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-11-20 05:17:29 +00:00
|
|
|
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
|
2023-11-24 17:48:10 +00:00
|
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:77466ac61f4fda729e33f1cc796d9f00455c0b30'
|
2023-08-04 12:07:38 +00:00
|
|
|
implementation 'com.github.FireMasterK:nanojson:9f4af3b739cc13f3d0d9d4b758bbe2b2ae7119d7'
|
2023-11-16 01:51:45 +00:00
|
|
|
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 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-11-27 04:51:49 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.17.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-10-07 05:26:59 +00:00
|
|
|
implementation 'org.hsqldb:hsqldb:2.7.2'
|
2023-12-07 07:12:12 +00:00
|
|
|
implementation 'org.postgresql:postgresql:42.7.1'
|
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'
|
2023-11-15 01:05:25 +00:00
|
|
|
implementation 'org.liquibase:liquibase-core:4.25.0'
|
2023-11-16 23:36:34 +00:00
|
|
|
implementation('org.liquibase.ext:liquibase-yugabytedb:4.25.0') { exclude group: 'org.liquibase' }
|
2023-11-30 03:57:17 +00:00
|
|
|
implementation 'com.zaxxer:HikariCP:5.1.0'
|
2023-11-20 16:19:52 +00:00
|
|
|
implementation 'org.springframework.security:spring-security-crypto:6.2.0'
|
2023-11-30 16:09:15 +00:00
|
|
|
implementation 'commons-logging:commons-logging:1.3.0'
|
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'
|
2023-11-30 16:09:19 +00:00
|
|
|
implementation 'io.sentry:sentry:7.0.0'
|
2023-12-14 21:43:48 +00:00
|
|
|
implementation 'rocks.kavin:reqwest4j:1.0.13'
|
2023-11-15 01:52:36 +00:00
|
|
|
implementation 'io.minio:minio:8.5.7'
|
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
|