blob: a4cc5abb05f96e1bdc2bb32afdd63ce5b2515665 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
plugins {
kotlin("jvm")
id("java-gradle-plugin")
id("maven-publish")
}
val kotlinVersion: String by System.getProperties()
val autoServiceVersion: String by project
repositories()
gradlePlugin {
plugins {
isAutomatedPublishing = false
create("simplePlugin") {
id = "pl.treksoft.kvision"
implementationClass = "pl.treksoft.kvision.gradle.KVisionGradlePlugin"
}
}
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:$kotlinVersion")
}
val sourcesJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
from(kotlin.sourceSets.main.get().kotlin)
}
publishing {
publications {
create<MavenPublication>("kotlin") {
from(components["kotlin"])
artifact(tasks["sourcesJar"])
pom {
defaultPom()
}
}
}
}
setupPublication()
|