Piped-Backend/build.gradle
dependabot[bot] 236a285c0c Bump hibernate-hikaricp from 5.6.6.Final to 5.6.7.Final
Bumps [hibernate-hikaricp](https://github.com/hibernate/hibernate-orm) from 5.6.6.Final to 5.6.7.Final.
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.7/changelog.txt)
- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.6...5.6.7)

---
updated-dependencies:
- dependency-name: org.hibernate:hibernate-hikaricp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-29 09:55:17 +01:00

62 lines
2.3 KiB
Groovy

plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
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.8'
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'com.github.FireMasterK.NewPipeExtractor:NewPipeExtractor:87df3331f419e1a93690d3f34eb50c7c14ff4aa1'
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.2'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2'
implementation 'org.json:json:20211205'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.6'
implementation 'com.rometools:rome:1.18.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.1.1'
implementation 'io.activej:activej-http:5.1.1'
implementation 'io.activej:activej-boot:5.1.1'
implementation 'io.activej:activej-specializer:5.1.1'
implementation 'io.activej:activej-launchers-http:5.1.1'
implementation 'org.hsqldb:hsqldb:2.6.1'
implementation 'org.postgresql:postgresql:42.3.3'
implementation 'org.hibernate:hibernate-core:5.6.7.Final'
implementation 'org.hibernate:hibernate-hikaricp:5.6.7.Final'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'org.springframework.security:spring-security-crypto:5.6.2'
implementation 'commons-logging:commons-logging:1.2'
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.3"))
implementation("com.squareup.okhttp3:okhttp")
implementation("com.squareup.okhttp3:okhttp-brotli")
}
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