Skip to content

Commit d004fc1

Browse files
committed
Update build and badges
1 parent bc8d306 commit d004fc1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JSON Iterator [![Build](https://github.com/sava-software/json-iterator/workflows/Gradle%20Check/badge.svg)](https://github.com/sava-software/json-iterator/actions)
1+
# JSON Iterator [![Gradle Check](https://github.com/sava-software/json-iterator/actions/workflows/build.yml/badge.svg)](https://github.com/sava-software/json-iterator/actions/workflows/build.yml) [![Publish Release](https://github.com/sava-software/json-iterator/actions/workflows/publish.yml/badge.svg)](https://github.com/sava-software/json-iterator/actions/workflows/publish.yml)
22

33
JSON Iterator is a minimal adaption of the [stream parsing features](http://jsoniter.com/java-features.html#iterator-to-rescue) from the project [json-iterator/java](https://github.com/json-iterator/java).
44

@@ -8,7 +8,7 @@ Parsing supports String, byte[], char[] and InputStream data sources.
88

99
## Basic Usage
1010

11-
See [JsonIterator.java](json_iterator/src/main/java/systems/comodal/jsoniter/JsonIterator.java) for the public interface.
11+
See [JsonIterator.java](json-iterator/src/main/java/systems/comodal/jsoniter/JsonIterator.java) for the public interface.
1212

1313
```java
1414
var jsonIterator = JsonIterator.parse("{\"hello\": \"world\"}");
@@ -20,7 +20,7 @@ System.out.println(jsonIterator.readObjField() + ' ' + jsonIterator.readString()
2020
[Generate a classic token](https://github.com/settings/tokens) with the `read:packages` scope needed to access
2121
dependencies hosted on GitHub Package Repository.
2222

23-
Add the following properties to `$HOME/.gradle/gradle.properties`.
23+
#### ~/.gradle/gradle.properties
2424

2525
```gradle.properties
2626
savaGithubPackagesUsername=GITHUB_USERNAME

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
pluginManagement {
22
repositories {
3-
gradlePluginPortal()
43
maven {
54
name = "savaGithubPackages"
65
url = uri("https://maven.pkg.github.com/sava-software/sava-build")
76
credentials(PasswordCredentials::class)
87
}
8+
gradlePluginPortal()
99
}
1010
}
1111

1212
plugins {
13-
id("software.sava.build") version "0.1.13"
13+
id("software.sava.build") version "0.1.21"
1414
}
1515

1616
rootProject.name = "json-iterator"

0 commit comments

Comments
 (0)