Piped-Backend/build.gradle
dependabot[bot] dc009f38fc Bump caffeine from 3.0.4 to 3.0.5
Bumps [caffeine](https://github.com/ben-manes/caffeine) from 3.0.4 to 3.0.5.
- [Release notes](https://github.com/ben-manes/caffeine/releases)
- [Commits](https://github.com/ben-manes/caffeine/compare/v3.0.4...v3.0.5)

---
updated-dependencies:
- dependency-name: com.github.ben-manes.caffeine:caffeine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-12-03 15:47:45 +00:00

58 lines
2.1 KiB
Groovy

plugins {
id "com.github.johnrengelman.shadow" version "7.1.0"
id "java"
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.9'
implementation 'commons-io:commons-io:2.11.0'
implementation 'it.unimi.dsi:fastutil-core:8.5.6'
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:5b5a673f3c4aba8e32d2da18555cb2f826ed5baa'
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
implementation 'org.json:json:20210307'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.5'
implementation 'com.rometools:rome:1.16.0'
implementation 'com.github.ipfs:java-ipfs-http-client:v1.3.3'
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'io.activej:activej-common:5.0'
implementation 'io.activej:activej-http:5.0'
implementation 'io.activej:activej-boot:5.0'
implementation 'io.activej:activej-specializer:5.0'
implementation 'io.activej:activej-launchers-http:5.0'
implementation 'org.postgresql:postgresql:42.3.1'
implementation 'org.hibernate:hibernate-core:5.6.1.Final'
implementation 'org.hibernate:hibernate-hikaricp:5.6.1.Final'
implementation 'com.zaxxer:HikariCP:5.0.0'
implementation 'org.springframework.security:spring-security-crypto:5.6.0'
implementation 'commons-logging:commons-logging:1.2'
}
shadowJar {
// minimize()
}
jar {
manifest {
attributes(
'Main-Class': 'me.kavin.piped.Main'
)
}
}
group = 'me.kavin.piped'
version = '1.0'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11