aboutsummaryrefslogtreecommitdiff
path: root/plugins/gfm/build.gradle.kts
blob: c02263450ac33e73415b546aa5b7d9d26d51f1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
publishing {
    publications {
        register<MavenPublication>("gfmPlugin") {
            artifactId = "gfm-plugin"
            from(components["java"])
        }
    }
}

dependencies {
    implementation(project(":plugins:base"))
}