Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update plugin me.philippheuer.configuration to v0.14.0 #240

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
`java-library`
}

projectConfiguration {
artifactId.set("events4j-api")
artifactDisplayName.set("Events4J API")
Expand Down
1 change: 0 additions & 1 deletion bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ projectConfiguration {
artifactId.set("events4j-bom")
artifactDisplayName.set("Events4J - BOM")
artifactDescription.set("Events4J - Bill of materials")
type.set(me.philippheuer.projectcfg.domain.ProjectType.LIBRARY)
}

dependencies {
Expand Down
10 changes: 1 addition & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Plugins
plugins {
id("me.philippheuer.configuration") version "0.13.0"
id("me.philippheuer.configuration") version "0.14.0"
}

version = properties["version"] as String
Expand All @@ -16,7 +16,6 @@ allprojects {

projectConfiguration {
language.set(me.philippheuer.projectcfg.domain.ProjectLanguage.JAVA)
type.set(me.philippheuer.projectcfg.domain.ProjectType.LIBRARY)
javaVersion.set(JavaVersion.VERSION_1_8)
lombokVersion.set("1.18.36")
artifactGroupId.set("com.github.philippheuer.events4j")
Expand Down Expand Up @@ -56,10 +55,3 @@ allprojects {
}
}
}

// Subprojects
subprojects {
if (!name.contains("bom")) {
apply(plugin = "java-library")
}
}
4 changes: 4 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
`java-library`
}

projectConfiguration {
artifactId.set("events4j-core")
artifactDisplayName.set("Events4J Core")
Expand Down
4 changes: 4 additions & 0 deletions handler-reactor/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
`java-library`
}

projectConfiguration {
artifactId.set("events4j-handler-reactor")
artifactDisplayName.set("Events4J Handler - Reactor")
Expand Down
4 changes: 4 additions & 0 deletions handler-simple/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
`java-library`
}

projectConfiguration {
artifactId.set("events4j-handler-simple")
artifactDisplayName.set("Events4J Handler - Simple")
Expand Down
4 changes: 4 additions & 0 deletions handler-spring/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
`java-library`
}

projectConfiguration {
artifactId.set("events4j-handler-spring")
artifactDisplayName.set("Events4J Handler - Spring")
Expand Down
1 change: 1 addition & 0 deletions kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ projectConfiguration {
artifactId.set("events4j-kotlin")
artifactDisplayName.set("Events4J - Kotlin")
artifactDescription.set("Events4J - Kotlin extension functions")
type.set(me.philippheuer.projectcfg.domain.ProjectType.LIBRARY)
}

dependencies {
Expand Down