blob: 8ea5ec0046517158b347768a914a2dcd1711b301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
id("org.jetbrains.conventions.maven-publish")
}
dependencies {
compileOnly(projects.core)
implementation(projects.plugins.base)
implementation(projects.plugins.gfm)
implementation(kotlin("reflect"))
testImplementation(kotlin("test"))
testImplementation(projects.core.testApi)
}
registerDokkaArtifactPublication("jekyllPlugin") {
artifactId = "jekyll-plugin"
}
|