blob: 1291c56d4615d3ce0de451f008ae4660ef9fa924 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
id("org.jetbrains.conventions.maven-publish")
}
dependencies {
compileOnly(project(":core"))
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
implementation(project(":plugins:base"))
implementation(project(":plugins:gfm"))
testImplementation(project(":test-utils"))
testImplementation(project(":core:test-api"))
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
}
registerDokkaArtifactPublication("jekyllPlugin") {
artifactId = "jekyll-plugin"
}
|