Skip to content

Commit a518696

Browse files
Kirill Timofeevelizarov
Kirill Timofeev
authored andcommitted
Migrate build to gradle
1 parent 5576686 commit a518696

File tree

52 files changed

+714
-2005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+714
-2005
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
/.idea
22
*.iml
3+
.gradle
4+
build
5+
out
36
target

benchmarks/build.gradle

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
plugins {
2+
id "me.champeau.gradle.jmh" version "0.4.4"
3+
}
4+
5+
repositories {
6+
maven { url "http://repo.typesafe.com/typesafe/releases/" }
7+
}
8+
9+
dependencies {
10+
jmh 'com.typesafe.akka:akka-actor:2.0.2'
11+
jmh project(':kotlinx-coroutines-core')
12+
jmh project(':kotlinx-coroutines-core').sourceSets.test.output
13+
}
14+
15+
jmh.jmhVersion = '1.19'
16+
17+
jmhJar.archiveName = 'benchmarks.jar'

benchmarks/pom.xml

-234
This file was deleted.

0 commit comments

Comments
 (0)