Skip to content

Commit 0950278

Browse files
SanneDavideD
authored andcommitted
Update the project dependencies
1 parent 41a34a4 commit 0950278

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

documentation/src/main/asciidoc/reference/introduction.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ Optionally, you might also add any of the following additional features:
8585
| Optional feature | Dependencies
8686

8787
| An {slf4j}[SLF4J] logging implementation | `org.apache.logging.log4j:log4j-core` or `org.slf4j:slf4j-jdk14`
88-
| The Hibernate metamodel generator, if you're using the JPA criteria query API | `org.hibernate:hibernate-jpamodelgen`
88+
| The Hibernate metamodel generator, if you're using the JPA criteria query API | `org.hibernate.orm:hibernate-jpamodelgen`
8989
| Hibernate Validator | `org.hibernate.validator:hibernate-validator` and `org.glassfish:jakarta.el`
9090
| Compile-time checking for your HQL queries | `org.hibernate:query-validator`
91-
| Second-level cache support via JCache and EHCache | `org.hibernate:hibernate-jcache` along with `org.ehcache:ehcache`
91+
| Second-level cache support via JCache and EHCache | `org.hibernate.orm:hibernate-jcache` along with `org.ehcache:ehcache`
9292
| SCRAM authentication support for PostgreSQL | `com.ongres.scram:client:2.1`
9393
|===
9494

hibernate-reactive-core/build.gradle

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ apply from: publishScript
88

99
dependencies {
1010

11-
api ("org.hibernate:hibernate-core:${hibernateOrmVersion}") {
12-
//We don't need any of these:
13-
exclude group: 'org.javassist', module: 'javassist'
14-
exclude group: 'javax.activation', module: 'javax.activation-api'
15-
}
11+
api "org.hibernate.orm:hibernate-core:${hibernateOrmVersion}"
1612

1713
api 'io.smallrye.reactive:mutiny:2.0.0'
1814

@@ -59,11 +55,7 @@ dependencies {
5955
requireCapability 'org.ehcache.modules:ehcache-xml-jakarta'
6056
}
6157
}
62-
testRuntimeOnly ("org.hibernate:hibernate-jcache:${hibernateOrmVersion}") {
63-
//We don't need any of these:
64-
exclude group: 'org.javassist', module: 'javassist'
65-
exclude group: 'javax.activation', module: 'javax.activation-api'
66-
}
58+
testRuntimeOnly ("org.hibernate.orm:hibernate-jcache:${hibernateOrmVersion}")
6759

6860
// log4j
6961
testRuntimeOnly 'org.apache.logging.log4j:log4j-core:2.17.2'

integration-tests/bytecode-enhancements-it/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
implementation project(':hibernate-reactive-core')
1010

1111
// JPA metamodel generation for criteria queries (optional)
12-
annotationProcessor "org.hibernate:hibernate-jpamodelgen:${hibernateOrmVersion}"
12+
annotationProcessor "org.hibernate.orm:hibernate-jpamodelgen:${hibernateOrmVersion}"
1313

1414
// Testing on one database should be enough
1515
runtimeOnly "io.vertx:vertx-pg-client:${vertxVersion}"
@@ -126,4 +126,4 @@ tasks.addRule( "Pattern testDb<id>" ) { String taskName ->
126126
}
127127
}
128128
}
129-
}
129+
}

0 commit comments

Comments
 (0)