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

dependencies {
    compileOnly(project(":plugins:base"))
    testImplementation(project(":plugins:base"))
    testImplementation(project(":plugins:base", configuration = "testUtils"))
}