mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
66 lines
2.4 KiB
Groovy
66 lines
2.4 KiB
Groovy
plugins {
|
|
id "com.github.johnrengelman.shadow" version "8.1.1"
|
|
id "java"
|
|
id "io.freefair.lombok" version "8.0.1"
|
|
id "eclipse"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
|
implementation 'org.apache.commons:commons-text:1.10.0'
|
|
implementation 'commons-io:commons-io:2.12.0'
|
|
implementation 'it.unimi.dsi:fastutil-core:8.5.12'
|
|
implementation 'commons-codec:commons-codec:1.15'
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
|
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:251b204a23742c3413426c9b6131d084b190636f'
|
|
implementation 'com.github.FireMasterK:nanojson:01934924442edda6952f3bedf80ba9e969cba8bc'
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.15.1'
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.15.1'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.1'
|
|
implementation 'com.rometools:rome:2.1.0'
|
|
implementation 'org.jsoup:jsoup:1.16.1'
|
|
implementation 'io.activej:activej-common:5.4.3'
|
|
implementation 'io.activej:activej-http:5.4.3'
|
|
implementation 'io.activej:activej-boot:5.4.3'
|
|
implementation 'io.activej:activej-specializer:5.4.3'
|
|
implementation 'io.activej:activej-launchers-http:5.4.3'
|
|
implementation 'org.hsqldb:hsqldb:2.7.1'
|
|
implementation 'org.postgresql:postgresql:42.6.0'
|
|
implementation 'org.hibernate:hibernate-core:6.2.3.Final'
|
|
implementation 'org.hibernate:hibernate-hikaricp:6.2.3.Final'
|
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
|
implementation 'org.springframework.security:spring-security-crypto:6.1.0'
|
|
implementation 'commons-logging:commons-logging:1.2'
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.11.0"))
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli'
|
|
implementation 'io.sentry:sentry:6.20.0'
|
|
implementation 'rocks.kavin:reqwest4j:1.0.3'
|
|
implementation 'io.minio:minio:8.5.3'
|
|
}
|
|
|
|
shadowJar {
|
|
// minimize()
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'me.kavin.piped.Main'
|
|
)
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile).each {
|
|
it.options.compilerArgs.add('--enable-preview')
|
|
}
|
|
|
|
group = 'me.kavin.piped'
|
|
version = '1.0'
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|