Skip to content

Commit 5d4d381

Browse files
committed
Remove Hibernate Gradle plugin
1 parent 690297c commit 5d4d381

File tree

6 files changed

+26
-22
lines changed

6 files changed

+26
-22
lines changed

examples/native-sql-example/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ buildscript {
1616
}
1717
}
1818

19-
plugins {
20-
// Optional: Hibernate Gradle plugin to enable bytecode enhancements
21-
alias(libs.plugins.org.hibernate.orm)
22-
}
19+
//plugins {
20+
// // Optional: Hibernate Gradle plugin to enable bytecode enhancements
21+
// alias(libs.plugins.org.hibernate.orm)
22+
//}
2323

2424
description = 'Hibernate Reactive native SQL Example'
2525

@@ -44,7 +44,7 @@ dependencies {
4444
}
4545

4646
// Optional: enable the bytecode enhancements
47-
hibernate { enhancement }
47+
//hibernate { enhancement {} }
4848

4949
// Create tasks to run the different API available.
5050
//

examples/session-example/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ buildscript {
1515
mavenCentral()
1616
}
1717
}
18-
19-
plugins {
20-
// Optional: Hibernate Gradle plugin to enable bytecode enhancements
21-
alias(libs.plugins.org.hibernate.orm)
22-
}
18+
//
19+
//plugins {
20+
// // Optional: Hibernate Gradle plugin to enable bytecode enhancements
21+
// alias(libs.plugins.org.hibernate.orm)
22+
//}
2323

2424
description = 'Hibernate Reactive Session Examples'
2525

@@ -45,7 +45,7 @@ dependencies {
4545
}
4646

4747
// Optional: enable the bytecode enhancements
48-
hibernate { enhancement }
48+
//hibernate { enhancement }
4949

5050
// Create tasks to run the different API available.
5151
//

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ buildscript {
99
}
1010
}
1111

12-
plugins {
13-
alias(libs.plugins.org.hibernate.orm)
14-
}
12+
//plugins {
13+
// alias(libs.plugins.org.hibernate.orm)
14+
//}
1515

1616
description = 'Bytecode enhancements integration tests'
1717

@@ -38,11 +38,11 @@ dependencies {
3838
testImplementation(libs.io.vertx.vertx.junit5)
3939
}
4040

41-
hibernate {
42-
enhancement {
43-
// We want everything enabled for the tests
44-
}
45-
}
41+
//hibernate {
42+
// enhancement {
43+
// // We want everything enabled for the tests
44+
// }
45+
//}
4646

4747
// Print a summary of the results of the tests (number of failures, successes and skipped)
4848
// This is the same as the one in hibernate-reactive-core

integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyBasicFieldTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import java.util.List;
1010
import java.util.concurrent.TimeUnit;
1111

12+
import org.junit.jupiter.api.Disabled;
1213
import org.junit.jupiter.api.Test;
1314

1415
import io.vertx.junit5.Timeout;
@@ -21,6 +22,7 @@
2122
* bytecode enhancements is enabled.
2223
*/
2324
@Timeout(value = 10, timeUnit = TimeUnit.MINUTES)
25+
@Disabled
2426
public class LazyBasicFieldTest extends BaseReactiveIT {
2527
@Override
2628
protected Collection<Class<?>> annotatedEntities() {

integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import org.hibernate.reactive.it.lazytoone.Ship;
1414
import org.hibernate.reactive.mutiny.Mutiny;
1515

16+
import org.junit.jupiter.api.Disabled;
1617
import org.junit.jupiter.api.Test;
1718

1819
import io.vertx.junit5.Timeout;
@@ -57,6 +58,7 @@ public void testCascadeDelete(VertxTestContext context) {
5758
);
5859
}
5960

61+
@Disabled
6062
@Test
6163
public void testFetchOnChildSide(VertxTestContext context) {
6264
Captain robert = new Captain( "Robert Witterel" );

integration-tests/hibernate-validator-postgres-it/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ buildscript {
99
}
1010
}
1111

12-
plugins {
13-
alias(libs.plugins.org.hibernate.orm)
14-
}
12+
//plugins {
13+
// alias(libs.plugins.org.hibernate.orm)
14+
//}
1515

1616
description = 'Quarkus QE integration tests'
1717

0 commit comments

Comments
 (0)