File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 33Simple data table DSL for Kotlin.<br >
44This 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+
2132repositories {
22- maven {
23- url = URI (" https://maven.pkg.github.com/T45K/kotlin-data-table" )
24- }
33+ maven { url = URI (" https://jitpack.io" ) }
2534}
2635
2736dependencies {
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
You can’t perform that action at this time.
0 commit comments