Skip to content

Commit 0b201d9

Browse files
committed
Added non-shaded
1 parent 3b2cd16 commit 0b201d9

File tree

6 files changed

+32
-18
lines changed

6 files changed

+32
-18
lines changed

client/pom.xml

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
<parent>
66
<groupId>io.split.client</groupId>
77
<artifactId>java-client-parent</artifactId>
8-
<version>4.18.2</version>
8+
<version>4.18.3-rc</version>
99
</parent>
10-
<version>4.18.2</version>
10+
11+
<version>4.18.3-rc</version>
1112
<artifactId>java-client</artifactId>
1213
<packaging>jar</packaging>
1314
<name>Java Client</name>
@@ -47,6 +48,24 @@
4748
<target>${maven.compiler.target}</target>
4849
</configuration>
4950
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-jar-plugin</artifactId>
54+
<version>3.3.0</version>
55+
<executions>
56+
<execution>
57+
<id>non-shaded-jar</id>
58+
<phase>package</phase>
59+
<goals>
60+
<goal>jar</goal>
61+
</goals>
62+
<configuration>
63+
<classifier>non-shaded</classifier>
64+
</configuration>
65+
</execution>
66+
</executions>
67+
</plugin>
68+
5069
<!-- Shade dependencies to avoid conflicts with other customer's libs -->
5170
<plugin>
5271
<groupId>org.apache.maven.plugins</groupId>
@@ -81,8 +100,8 @@
81100
</includes>
82101
</artifactSet>
83102
<transformers>
84-
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" />
85-
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
103+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/>
104+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
86105
</transformers>
87106
<relocations>
88107
<relocation>
@@ -106,10 +125,7 @@
106125
<filter>
107126
<artifact>*:*</artifact>
108127
<excludes>
109-
<exclude>META-INF/license/**</exclude>
110-
<exclude>META-INF/*</exclude>
111-
<exclude>META-INF/maven/**</exclude>
112-
<exclude>META-INF/services/**</exclude>
128+
<exclude>META-INF/**</exclude>
113129
<exclude>LICENSE</exclude>
114130
<exclude>NOTICE</exclude>
115131
<exclude>/*.txt</exclude>
@@ -144,7 +160,6 @@
144160
</resource>
145161
</resources>
146162
</build>
147-
148163
<properties>
149164
<slf4j.api.version>1.7.36</slf4j.api.version>
150165
<maven.compiler.source>8</maven.compiler.source>
@@ -183,7 +198,6 @@
183198
<artifactId>snakeyaml</artifactId>
184199
<version>2.0</version>
185200
</dependency>
186-
187201
<!-- Test deps -->
188202
<dependency>
189203
<groupId>org.apache.commons</groupId>
@@ -257,4 +271,4 @@
257271
<scope>test</scope>
258272
</dependency>
259273
</dependencies>
260-
</project>
274+
</project>

okhttp-modules/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<parent>
66
<artifactId>java-client-parent</artifactId>
77
<groupId>io.split.client</groupId>
8-
<version>4.18.2</version>
8+
<version>4.18.3-rc</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
11-
<version>4.18.2</version>
11+
<version>4.18.3-rc</version>
1212
<artifactId>okhttp-modules</artifactId>
1313
<packaging>jar</packaging>
1414
<name>http-modules</name>

pluggable-storage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>java-client-parent</artifactId>
88
<groupId>io.split.client</groupId>
9-
<version>4.18.2</version>
9+
<version>4.18.3-rc</version>
1010
</parent>
1111

1212
<version>2.1.0</version>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.split.client</groupId>
66
<artifactId>java-client-parent</artifactId>
7-
<version>4.18.2</version>
7+
<version>4.18.3-rc</version>
88
<dependencyManagement>
99
<dependencies>
1010
<dependency>

redis-wrapper/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>java-client-parent</artifactId>
88
<groupId>io.split.client</groupId>
9-
<version>4.18.2</version>
9+
<version>4.18.3-rc</version>
1010
</parent>
1111
<artifactId>redis-wrapper</artifactId>
1212
<version>3.1.2</version>

testing/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>io.split.client</groupId>
77
<artifactId>java-client-parent</artifactId>
8-
<version>4.18.2</version>
8+
<version>4.18.3-rc</version>
99
</parent>
1010
<artifactId>java-client-testing</artifactId>
1111
<packaging>jar</packaging>
12-
<version>4.18.2</version>
12+
<version>4.18.3-rc</version>
1313
<name>Java Client For Testing</name>
1414
<description>Testing suite for Java SDK for Split</description>
1515
<dependencies>

0 commit comments

Comments
 (0)