Skip to content

Commit af70b79

Browse files
committed
removed credentials from readme
1 parent 57625ca commit af70b79

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,32 +50,23 @@ Any symbols other than constants and function calls are resolved as variables du
5050
Kotlin DSL
5151
```kotlin
5252
repositories {
53-
maven("https://maven.pkg.github.com/murzagalin/multiplatform-expressions-evaluator") {
54-
credentials {
55-
username = "<your github username>"
56-
password = "<your github token>"
57-
}
58-
}
53+
maven("https://maven.pkg.github.com/murzagalin/multiplatform-expressions-evaluator")
5954
}
6055

6156
dependencies {
62-
implementation("com.github.murzagalin:multiplatform-expressions-evaluator:0.8.3")
57+
implementation("com.github.murzagalin:multiplatform-expressions-evaluator:0.9.0")
6358
}
6459
```
6560
Groovy
6661
```groovy
6762
repositories {
6863
maven {
6964
url = uri("https://maven.pkg.github.com/murzagalin/multiplatform-expressions-evaluator")
70-
credentials {
71-
username = "<your github username>"
72-
password = "<your github token>"
73-
}
7465
}
7566
}
7667
7768
dependencies {
78-
implementation "com.github.murzagalin:multiplatform-expressions-evaluator:0.8.3"
69+
implementation "com.github.murzagalin:multiplatform-expressions-evaluator:0.9.0"
7970
}
8071
```
8172

0 commit comments

Comments
 (0)