-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (63 loc) · 2.58 KB
/
build.gradle
File metadata and controls
69 lines (63 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
id "com.github.johnrengelman.shadow" version "8.1.1"
id "java"
id "eclipse"
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.apache.commons:commons-text:1.14.0'
implementation 'commons-io:commons-io:2.20.0'
implementation 'it.unimi.dsi:fastutil-core:8.5.16'
implementation 'commons-codec:commons-codec:1.19.0'
implementation 'org.bouncycastle:bcprov-jdk18on:1.81'
implementation 'com.github.FireMasterK:NewPipeExtractor:92809cedefd89ce68bc4de8763e9d5f2760f5899'
implementation 'com.github.FireMasterK:nanojson:a507525e549a836c3a8b6ab7090dca38e92942ef'
implementation 'com.fasterxml.jackson.core:jackson-core:2.19.2'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.19.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
implementation 'com.rometools:rome:2.1.0'
implementation 'com.rometools:rome-modules:2.1.0'
implementation 'org.jsoup:jsoup:1.21.2'
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'
implementation 'org.hsqldb:hsqldb:2.7.4'
implementation 'org.postgresql:postgresql:42.7.7'
implementation 'org.hibernate:hibernate-core:6.6.44.Final'
implementation 'org.hibernate:hibernate-hikaricp:6.6.44.Final'
implementation 'org.liquibase:liquibase-core:4.33.0'
implementation('org.liquibase.ext:liquibase-yugabytedb:4.33.0') { exclude group: 'org.liquibase' }
implementation 'com.zaxxer:HikariCP:6.3.2'
implementation 'org.springframework.security:spring-security-crypto:6.5.3'
implementation 'commons-logging:commons-logging:1.3.5'
implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0"))
implementation 'com.squareup.okhttp3:okhttp'
implementation 'com.squareup.okhttp3:okhttp-brotli'
implementation 'io.sentry:sentry:8.19.1'
implementation 'rocks.kavin:reqwest4j:1.0.14'
implementation 'io.minio:minio:8.5.17'
compileOnly 'org.projectlombok:lombok:1.18.38'
annotationProcessor 'org.projectlombok:lombok:1.18.38'
}
shadowJar {
// minimize()
}
jar {
manifest {
attributes(
'Main-Class': 'me.kavin.piped.Main'
)
}
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
group = 'me.kavin.piped'
version = '1.0'