File tree Expand file tree Collapse file tree 6 files changed +33
-0
lines changed Expand file tree Collapse file tree 6 files changed +33
-0
lines changed Original file line number Diff line number Diff 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+
79scmVersion {
810 tag {
911 prefix = " javacan-"
Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff line change 11plugins {
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+ }
Original file line number Diff line number Diff 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+
Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff line change @@ -9,3 +9,9 @@ dependencies {
99tasks.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+ }
You can’t perform that action at this time.
0 commit comments