Upgrade dokka to 0.9.16

Fix compilation under JDK9, issue #321
This commit is contained in:
Sergey Mashkov
2018-04-03 14:38:37 +03:00
parent 2d8a182071
commit e3534e42d5
3 changed files with 16 additions and 4 deletions

View File

@@ -92,19 +92,16 @@ allprojects {
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/kdoc"
reportNotDocumented = false
}
task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'javadoc'
outputDirectory = "$buildDir/javadoc"
reportNotDocumented = false
}
task dokkaWebsite(type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'kotlin-website'
outputDirectory = "${rootProject.projectDir}/apidoc"
reportNotDocumented = false
}
}

View File

@@ -2,7 +2,7 @@ version=0.9.2-SNAPSHOT
kotlin_version=1.2.31
coroutines_version=0.22.5
dokka_version=0.9.15
dokka_version=0.9.16
netty_version=4.1.19.Final
netty_tcnative_version=2.0.7.Final

15
pipeline.lua Normal file
View File

@@ -0,0 +1,15 @@
init = function(args)
request_uri = args[1]
depth = 10 -- tonumber(args[2]) or 1
local r = {}
for i=1,depth do
r[i] = wrk.format(nil, request_uri)
end
req = table.concat(r)
end
request = function()
wrk.headers["J-Tenant-Id"] = "1007"
return req
end