File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111/.idea
1212* .iml
13+
14+ /driver-core /dependency-reduced-pom.xml
Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4+ 2.0.9:
5+ ------
6+
7+ - [improvement] Shade Netty dependency (JAVA-538)
8+
9+
4102.0.8:
511------
612
Original file line number Diff line number Diff line change 135135 <showDeprecation >true</showDeprecation >
136136 </configuration >
137137 </plugin >
138+ <plugin >
139+ <artifactId >maven-shade-plugin</artifactId >
140+ <version >2.3</version >
141+ <executions >
142+ <execution >
143+ <phase >package</phase >
144+ <goals ><goal >shade</goal ></goals >
145+ <configuration >
146+ <artifactSet >
147+ <includes >
148+ <include >io.netty:netty</include >
149+ </includes >
150+ </artifactSet >
151+ <relocations >
152+ <relocation >
153+ <pattern >org.jboss.netty</pattern >
154+ <shadedPattern >com.datastax.shaded.netty</shadedPattern >
155+ </relocation >
156+ </relocations >
157+ </configuration >
158+ </execution >
159+ </executions >
160+ </plugin >
138161 </plugins >
139162 </build >
140163 </profile >
You can’t perform that action at this time.
0 commit comments