File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 31
31
32
32
// "10" for WildFly 10.x, "11" for 11.x, etc
33
33
wildFlyMajorVersion = project. wildflyVersion. split( ' \\ .' )[0 ]
34
+ bytebuddyVersion = project. byteBuddyVersion
34
35
artifactClassifier = " wildfly-${ wildFlyMajorVersion} -dist"
35
36
wildFlyInstallDir = " $rootProject . buildDir /wildfly"
36
37
fpackStagingDir = file( " target/featurepack" ) // Target build directory for the Feature Pack
@@ -70,6 +71,7 @@ featurepack {
70
71
variables[' slot' ] = rootProject. hibernateVersion
71
72
// Just the minor ORM version, e.g. "5.3"; Is used as an alias for the exact version
72
73
variables[' minorSlot' ] = rootProject. hibernateMajorMinorVersion
74
+ variables[' bytebuddySlot' ] = bytebuddyVersion
73
75
// Dependency on another Feature Pack:
74
76
dependency " org.wildfly:wildfly-feature-pack:${ project.wildflyVersion} " // It will assume it is "zip" by default
75
77
}
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ ~ Hibernate, Relational Persistence for Idiomatic Java
4
+ ~
5
+ ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
6
+ ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
7
+ -->
8
+ <module xmlns =" urn:jboss:module:1.3" name =" net.bytebuddy" slot =" ${bytebuddySlot}" >
9
+ <resources >
10
+ <artifact name =" ${net.bytebuddy:byte-buddy}" />
11
+ </resources >
12
+ </module >
Original file line number Diff line number Diff line change 9
9
<resources >
10
10
<artifact name =" ${org.hibernate:hibernate-core}" />
11
11
<artifact name =" ${org.hibernate:hibernate-envers}" />
12
- <artifact name =" ${net.bytebuddy:byte-buddy}" />
13
12
</resources >
14
13
15
14
<dependencies >
30
29
<module name =" org.javassist" export =" true" />
31
30
<module name =" org.hibernate.commons-annotations" />
32
31
<module name =" org.hibernate.orm.jipijapa-hibernate5" services =" import" slot =" ${slot}" />
32
+ <module name =" net.bytebuddy" slot =" ${bytebuddySlot}" />
33
33
</dependencies >
34
34
</module >
You can’t perform that action at this time.
0 commit comments