There was an error while loading. Please reload this page.
1 parent 458efc9 commit 3a2b963Copy full SHA for 3a2b963
1 file changed
btrace-dist/build.gradle
@@ -144,8 +144,16 @@ task clientJar(type: ShadowJar) {
144
exclude 'org/checkerframework/**'
145
exclude 'org/codehaus/**'
146
147
- exclude 'org/jctools/maps/**'
148
- exclude 'org/jctools/util/**'
+ exclude {
+ it.path.startsWith('org/jctools/maps/') &&
149
+ !it.path.startsWith("org/jctools/maps/NonBlockingIdentityHashMap") &&
150
+ !it.path.startsWith("org/jctools/maps/NonBlockingHashMap")
151
+ }
152
153
+ // 'org/jctools/util/**'
154
+ it.path.startsWith('org/jctools/util/') &&
155
+ !it.path.startsWith("org/jctools/util/UnsafeAccess")
156
157
exclude 'META-INF/services/com.sun.*'
158
exclude 'META-INF/services/javax.annotation.*'
159
0 commit comments