Skip to content

Commit 79a1fbc

Browse files
committed
Fix
1 parent 94896eb commit 79a1fbc

File tree

7 files changed

+212
-251
lines changed

7 files changed

+212
-251
lines changed

.ci.settings.xml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,18 @@ jobs:
2020
- '11'
2121
- '19'
2222
env:
23-
ARTIFACTORY_USER: ${{ secrets.ARTIFACTORY_USER }}
24-
ARTIFACTORY_TOKEN: ${{ secrets.ARTIFACTORY_TOKEN }}
2523
MAVEN_OPTS: "-XX:InitialHeapSize=2G -XX:MaxHeapSize=2G -XX:+PrintCommandLineFlags -XX:ThreadStackSize=65536 -XX:-TieredCompilation -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
26-
muteProps: "true"
27-
2824
steps:
2925
- name: Checkout code
3026
uses: actions/checkout@v5
3127
with:
3228
fetch-depth: 0
3329

3430
- name: Setup JDK ${{ matrix.jdk }}
35-
uses: actions/setup-java@v3
31+
uses: actions/setup-java@v5
3632
with:
3733
distribution: 'adopt'
3834
java-version: ${{ matrix.jdk }}
3935

40-
- name: Setup Maven
41-
run: cp .ci.settings.xml ${HOME}/.m2/settings.xml
42-
4336
- name: Test
44-
if: matrix.jdk == '8' && github.event_name == 'pull_request' && github.ref != 'refs/heads/main' && github.ref != 'refs/heads/development'
45-
run: mvn --batch-mode clean install
37+
run: mvn --batch-mode -T 2C -U clean package

.gitignore

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
1+
target/
2+
pom.xml.tag
3+
pom.xml.releaseBackup
4+
pom.xml.versionsBackup
5+
pom.xml.next
6+
release.properties
7+
dependency-reduced-pom.xml
8+
buildNumber.properties
9+
.mvn/timing.properties
10+
# https://maven.apache.org/wrapper/#usage-without-binary-jar
11+
.mvn/wrapper/maven-wrapper.jar
12+
13+
# Eclipse m2e generated files
14+
# Eclipse Core
15+
.project
16+
# JDT-specific (Eclipse Java Development Tools)
17+
.classpath
18+
19+
# Idea
120
.idea
2-
target

CHANGES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@
77

88
1.0.0
99
- First release. Up to date with java sdk v0.1.0
10-

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Unless required by applicable law or agreed to in writing, software
1010
distributed under the License is distributed on an "AS IS" BASIS,
1111
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
See the License for the specific language governing permissions and
13-
limitations under the License.
13+
limitations under the License.

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ Client client = api.getClient("CLIENT_NAME");
5555
EvaluationContext context = new MutableContext("TARGETING_KEY");
5656
Boolean boolValue = client.getBooleanValue("boolFlag", false, context);
5757
```
58-
If the same targeting key is used repeatedly, the evaluation context may be set at the client level
58+
If the same targeting key is used repeatedly, the evaluation context may be set at the client level
5959
```java
6060
EvaluationContext context = new MutableContext("TARGETING_KEY");
6161
client.setEvaluationContext(context)
6262
```
63-
or at the OpenFeatureAPI level
63+
or at the OpenFeatureAPI level
6464
```java
6565
EvaluationContext context = new MutableContext("TARGETING_KEY");
6666
OpenFeatureAPI.getInstance().setEvaluationContext(context)
6767
````
6868
If the context was set at the client or api level, it is not required to provide it during flag evaluation.
6969

7070
## Submitting issues
71-
71+
7272
The Split team monitors all issues submitted to this [issue tracker](https://github.com/splitio/split-openfeature-provider-java/issues). We encourage you to use this issue tracker to submit any bug reports, feedback, and feature enhancements. We'll do our best to respond in a timely manner.
7373

7474
## Contributing
@@ -78,13 +78,13 @@ Please see [Contributors Guide](CONTRIBUTORS-GUIDE.md) to find all you need to s
7878
Licensed under the Apache License, Version 2.0. See: [Apache License](http://www.apache.org/licenses/).
7979

8080
## About Split
81-
81+
8282
Split is the leading Feature Delivery Platform for engineering teams that want to confidently deploy features as fast as they can develop them. Split’s fine-grained management, real-time monitoring, and data-driven experimentation ensure that new features will improve the customer experience without breaking or degrading performance. Companies like Twilio, Salesforce, GoDaddy and WePay trust Split to power their feature delivery.
83-
83+
8484
To learn more about Split, contact hello@split.io, or get started with feature flags for free at https://www.split.io/signup.
85-
85+
8686
Split has built and maintains SDKs for:
87-
87+
8888
* .NET [Github](https://github.com/splitio/dotnet-client) [Docs](https://help.split.io/hc/en-us/articles/360020240172--NET-SDK)
8989
* Android [Github](https://github.com/splitio/android-client) [Docs](https://help.split.io/hc/en-us/articles/360020343291-Android-SDK)
9090
* Angular [Github](https://github.com/splitio/angular-sdk-plugin) [Docs](https://help.split.io/hc/en-us/articles/6495326064397-Angular-utilities)
@@ -105,8 +105,7 @@ Split has built and maintains SDKs for:
105105
* Ruby [Github](https://github.com/splitio/ruby-client) [Docs](https://help.split.io/hc/en-us/articles/360020673251-Ruby-SDK)
106106

107107
For a comprehensive list of open source projects visit our [Github page](https://github.com/splitio?utf8=%E2%9C%93&query=%20only%3Apublic%20).
108-
108+
109109
**Learn more about Split:**
110-
111-
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](http://help.split.io) for more detailed information.
112110

111+
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](http://help.split.io) for more detailed information.

0 commit comments

Comments
 (0)