Skip to content

Commit 8c931dc

Browse files
Add precommit file and fix typo
1 parent 3af2455 commit 8c931dc

File tree

4 files changed

+52
-2
lines changed

4 files changed

+52
-2
lines changed

.ci.settings.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<settings>
3+
<servers>
4+
<server>
5+
<!-- Deploy repository -->
6+
<id>maven-dev</id>
7+
<username>${env.ARTIFACTORY_USER}</username>
8+
<password>${env.ARTIFACTORY_TOKEN}</password>
9+
</server>
10+
<server>
11+
<!-- Virtual repository -->
12+
<id>maven-all-virtual</id>
13+
<username>${env.ARTIFACTORY_USER}</username>
14+
<password>${env.ARTIFACTORY_TOKEN}</password>
15+
</server>
16+
</servers>
17+
<pluginGroups>
18+
<pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
19+
</pluginGroups>
20+
<profiles>
21+
<profile>
22+
<id>sonar</id>
23+
<activation>
24+
<activeByDefault>true</activeByDefault>
25+
</activation>
26+
<properties>
27+
<sonar.projectName>java-client</sonar.projectName>
28+
<sonar.host.url>https://sonarqube.split-internal.com</sonar.host.url>
29+
<sonar.login>${env.SONAR_TOKEN}</sonar.login>
30+
<sonar.sources>.</sonar.sources>
31+
<sonar.inclusions>pom.xml,src/main/**</sonar.inclusions>
32+
<sonar.tests>.</sonar.tests>
33+
<sonar.test.inclusions>src/test/**</sonar.test.inclusions>
34+
<sonar.text.excluded.file.suffixes>.csv</sonar.text.excluded.file.suffixes>
35+
<sonar.cpd.exclusions>**/matchers/**/*.*</sonar.cpd.exclusions>
36+
<sonar.links.ci>https://travis-ci.com/splitio/java-client</sonar.links.ci>
37+
<sonar.links.scm>https://github.com/splitio/java-client</sonar.links.scm>
38+
</properties>
39+
</profile>
40+
</profiles>
41+
</settings>

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @splitio/sdk
1+
* @splitio/sdk

.pre-commit-config.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v6.0.0
4+
hooks:
5+
- id: check-added-large-files
6+
- id: check-json
7+
- id: check-yaml
8+
- id: end-of-file-fixer
9+
- id: trailing-whitespace

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
1.2.0 (August XX, 2025)
22
- Updated `io.split.client` dependency to 4.16.1
3-
- Updated `dev.openfeature` dependency to 1.16.0
3+
- Updated `dev.openfeature` dependency to 1.17.0
44

55
1.1.0
66
- Up tp date with spec v0.5.0 and java sdk v0.3.1

0 commit comments

Comments
 (0)