File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed
Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 1- 1.2.0 (September 2 , 2025)
1+ 1.2.0 (September 3 , 2025)
22 - Updated `io.split.client` dependency to 4.16.1
33 - Updated `dev.openfeature` dependency to 1.17.0
44 - Added tracking support
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import dev.openfeature.sdk.OpenFeatureAPI;
2424import io.split.openfeature.SplitProvider ;
2525
2626OpenFeatureAPI api = OpenFeatureAPI . getInstance();
27- api. setProvider (new SplitProvider (" YOUR_API_KEY" ));
27+ api. setProviderAndWait (new SplitProvider (" YOUR_API_KEY" ));
2828```
2929
3030If you are more familiar with Split or want access to other initialization options, you can provide a ` SplitClient ` to the constructor. See the [ Split Java SDK Documentation] ( https://help.split.io/hc/en-us/articles/360020405151-Java-SDK ) for more information.
@@ -42,7 +42,7 @@ SplitClientConfig config = SplitClientConfig.builder()
4242 .setBlockUntilReadyTimeout(10000 )
4343 .build();
4444SplitClient splitClient = SplitFactoryBuilder . build(" YOUR_API_KEY" , config). client();
45- api. setProvider (new SplitProvider (splitClient));
45+ api. setProviderAndWait (new SplitProvider (splitClient));
4646```
4747
4848## Use of OpenFeature with Split
Original file line number Diff line number Diff line change 148148 </execution >
149149 </executions >
150150 </plugin >
151- <plugin >
152- <groupId >org.sonatype.plugins</groupId >
153- <artifactId >nexus-staging-maven-plugin</artifactId >
154- <version >1.7.0</version >
155- <extensions >true</extensions >
156- <configuration >
157- <skipNexusStagingDeployMojo >true</skipNexusStagingDeployMojo >
158- </configuration >
159- </plugin >
160151 <plugin >
161152 <groupId >org.apache.maven.plugins</groupId >
162153 <artifactId >maven-source-plugin</artifactId >
184175 </execution >
185176 </executions >
186177 </plugin >
178+ <plugin >
179+ <groupId >org.sonatype.central</groupId >
180+ <artifactId >central-publishing-maven-plugin</artifactId >
181+ <version >0.7.0</version >
182+ <extensions >true</extensions >
183+ <configuration >
184+ <publishingServerId >central</publishingServerId >
185+ <autoPublish >false</autoPublish >
186+ <waitUntil >published</waitUntil >
187+ </configuration >
188+ </plugin >
187189 </plugins >
188190 </build >
189191</project >
You can’t perform that action at this time.
0 commit comments