We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f3e14 commit ab41c1dCopy full SHA for ab41c1d
README.md
@@ -4,18 +4,18 @@ A pipeline for processing datasets to extract metrics
4
5
## Build/Publishing
6
7
-All build and publishing operations are resolved via Gradle. To build & publish the library use
8
-
9
-```shell
10
-./gradlew publishToMavenLocal
+To import the library, add PLAN maven repository:
+```kotlin
+repositories {
+ // ...
11
+ maven {
12
+ url = uri("https://plan-maven.apal-research.com/")
13
+ }
14
+}
15
```
-This command will publish the pipeline into the maven local.
-To import the pipeline into your project use
16
+And import the library:
17
```kotlin
18
-implementation("org.jetbrains.plan:experiment-runner:0.0.1")
+implementation("org.jetbrains.plan:experiment-runner:0.0.4")
19
20
21
## Concepts
0 commit comments