File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 8
8
/.gradle
9
9
/bin
10
10
/build
11
+ dependency-reduced-pom.xml
Original file line number Diff line number Diff line change 57
57
58
58
<build >
59
59
<plugins >
60
+ <plugin >
61
+ <groupId >org.apache.maven.plugins</groupId >
62
+ <artifactId >maven-shade-plugin</artifactId >
63
+ <version >3.2.1</version >
64
+ <configuration >
65
+ <createSourcesJar >true</createSourcesJar >
66
+ <shadeSourcesContent >true</shadeSourcesContent >
67
+ <artifactSet >
68
+ <includes >
69
+ <include >com.fasterxml.jackson.core:jackson-core</include >
70
+ </includes >
71
+ </artifactSet >
72
+ <relocations >
73
+ <relocation >
74
+ <pattern >com.fasterxml.jackson</pattern >
75
+ <shadedPattern >com.arangodb.velocypack.deps.com.fasterxml.jackson</shadedPattern >
76
+ </relocation >
77
+ </relocations >
78
+ <transformers >
79
+ <transformer
80
+ implementation=" org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer" >
81
+ <resources >
82
+ <resource >META-INF/services/com.fasterxml.jackson.core.JsonFactory</resource >
83
+ </resources >
84
+ </transformer >
85
+ </transformers >
86
+ </configuration >
87
+ <executions >
88
+ <execution >
89
+ <phase >package</phase >
90
+ <goals >
91
+ <goal >shade</goal >
92
+ </goals >
93
+ </execution >
94
+ </executions >
95
+ </plugin >
60
96
<plugin >
61
97
<groupId >org.sonatype.plugins</groupId >
62
98
<artifactId >nexus-staging-maven-plugin</artifactId >
196
232
<dependency >
197
233
<groupId >com.fasterxml.jackson.core</groupId >
198
234
<artifactId >jackson-core</artifactId >
199
- <version >2.9.10 </version >
235
+ <version >2.11.0 </version >
200
236
</dependency >
201
237
<dependency >
202
238
<groupId >ch.qos.logback</groupId >
You can’t perform that action at this time.
0 commit comments