Skip to content

Commit 42364e8

Browse files
committed
provide project descriptions
1 parent aa9aa7c commit 42364e8

File tree

6 files changed

+33
-0
lines changed

6 files changed

+33
-0
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ plugins {
44
id("pl.allegro.tech.build.axion-release") version "1.16.1" // this is the last version that supports Java 8
55
}
66

7+
description = "JavaCAN is a binding to Linux' socketcan subsystem that feels native to Java developers."
8+
79
scmVersion {
810
tag {
911
prefix = "javacan-"

core-arch-detect/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ dependencies {
88
api(project(":core"))
99
nativeLibs(project(mapOf("path" to ":core", "configuration" to "archDetectConfiguration")))
1010
}
11+
12+
publishing.publications.withType<MavenPublication>().configureEach {
13+
pom {
14+
description = "${rootProject.description} The ${project.name} module bundles all architectures and allows runtime architecture detection."
15+
}
16+
}

core/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
plugins {
22
id("tel.schich.javacan.convention.native")
33
}
4+
5+
publishing.publications.withType<MavenPublication>().configureEach {
6+
pom {
7+
description = "${rootProject.description} The ${project.name} module provides the basic socketcan bindings."
8+
}
9+
}

epoll-arch-detect/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ dependencies {
88
api(project(":epoll"))
99
nativeLibs(project(mapOf("path" to ":epoll", "configuration" to "archDetectConfiguration")))
1010
}
11+
12+
publishing.publications.withType<MavenPublication>().configureEach {
13+
pom {
14+
description = "${rootProject.description} The ${project.name} module bundles all architectures and allows runtime architecture detection."
15+
}
16+
}
17+

epoll/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ dependencies {
66
api(project(":core"))
77
testImplementation(testFixtures(project(":core")))
88
}
9+
10+
publishing.publications.withType<MavenPublication>().configureEach {
11+
pom {
12+
description = "${rootProject.description} The ${project.name} module provides facilities for reactive IO using Linux' epoll subsystem."
13+
}
14+
}

tools/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ dependencies {
99
tasks.withType<Test>().configureEach {
1010
enabled = false
1111
}
12+
13+
publishing.publications.withType<MavenPublication>().configureEach {
14+
pom {
15+
description = "${rootProject.description} The ${project.name} module contains tools to work with socketcan and related tooling."
16+
}
17+
}

0 commit comments

Comments
 (0)