Skip to content

Commit c53900f

Browse files
committed
update README
1 parent 811a29c commit c53900f

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,22 @@
33
Simple data table DSL for Kotlin.<br>
44
This is expired by [Spock Data Tables](https://spockframework.org/spock/docs/2.3/data_driven_testing.html#data-tables).
55

6-
## Install
6+
## Install
7+
8+
Please refer to [JitPack page](https://jitpack.io/#T45K/kotlin-data-table/0.0.1).
79

810
### Maven
911

1012
```pom.xml
13+
<repositories>
14+
<repository>
15+
<id>jitpack.io</id>
16+
<url>https://jitpack.io</url>
17+
</repository>
18+
</repositories>
19+
1120
<dependency>
12-
<groupId>io.github.t45k</groupId>
21+
<groupId>com.github.t45k</groupId>
1322
<artifactId>kotlin-data-table</artifactId>
1423
<version>0.0.1</version>
1524
</dependency>
@@ -18,14 +27,14 @@ This is expired by [Spock Data Tables](https://spockframework.org/spock/docs/2.3
1827
### Gradle
1928

2029
```build.gradle.kts
30+
import java.net.URI
31+
2132
repositories {
22-
maven {
23-
url = URI("https://maven.pkg.github.com/T45K/kotlin-data-table")
24-
}
33+
maven { url = URI("https://jitpack.io") }
2534
}
2635

2736
dependencies {
28-
implementation("io.github.t45k:kotlin-data-table:0.0.1")
37+
implementation("com.github.T45K:kotlin-data-table:0.0.1")
2938
}
3039
```
3140

0 commit comments

Comments
 (0)