We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39e5a2 commit 7c56382Copy full SHA for 7c56382
README.md
@@ -26,6 +26,30 @@ pluginManagement {
26
}
27
```
28
29
+Use plugin in `build.gradle`:
30
+
31
+```groovy
32
+plugins {
33
+ id 'kotlinx.benchmark' version "0.2.0-dev-2"
34
+}
35
+```
36
37
+Alternatively, you can use build script dependencies and "apply plugin" syntax:
38
39
40
+buildscript {
41
+ repositories {
42
+ …
43
+ maven { url 'https://dl.bintray.com/kotlin/kotlinx' }
44
+ }
45
+ dependencies {
46
+ classpath "org.jetbrains.kotlinx:kotlinx.benchmark.gradle:0.2.0-dev-2"
47
48
49
50
+apply plugin: 'kotlinx.benchmark'
51
52
53
For Kotlin/JS specify building `nodejs` flavour:
54
55
```groovy
0 commit comments