File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
integrationtest/java/modules/orm-coordination-outbox-polling-elasticsearch Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 44
44
<artifactId >hibernate-search-mapper-orm-coordination-outbox-polling</artifactId >
45
45
</dependency >
46
46
47
+ <!-- Adding this dependency to be able to refer to ByteBuddy in module-info.java -->
48
+ <dependency >
49
+ <groupId >net.bytebuddy</groupId >
50
+ <artifactId >byte-buddy</artifactId >
51
+ <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. -->
52
+ <version >${version.net.bytebuddy} </version >
53
+ </dependency >
54
+
47
55
<dependency >
48
56
<groupId >org.hibernate.search</groupId >
49
57
<artifactId >hibernate-search-util-internal-test-orm</artifactId >
Original file line number Diff line number Diff line change 29
29
* Without this, compilation as a Java module fails.
30
30
*/
31
31
requires java .naming ;
32
+
33
+ /*
34
+ * This is necessary in order to put ByteBuddy in the modulepath and make module exports effective.
35
+ * I do not know why ByteBuddy doesn't end up in the modulepath without this.
36
+ */
37
+ requires net .bytebuddy ;
32
38
}
You can’t perform that action at this time.
0 commit comments