Skip to content

Commit

Permalink
Lower Jakarta module baseline to 9
Browse files Browse the repository at this point in the history
There is no strong reason to baseline on the higher 10. Setting the baseline to 9 will allow more people to utilize this module.

See micrometer-metricsgh-4201
  • Loading branch information
shakuzen committed Oct 10, 2023
1 parent 6418574 commit 9ba2264
Show file tree
Hide file tree
Showing 20 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ subprojects {

check.dependsOn("testModules")

if (!(project.name in ['micrometer-jakarta10'])) {
if (!(project.name in ['micrometer-jakarta9'])) {
apply plugin: 'me.champeau.gradle.japicmp'
apply plugin: 'de.undercouch.download'

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ httpcomponents-client = { module = "org.apache.httpcomponents:httpclient", versi
httpcomponents-client5 = { module = "org.apache.httpcomponents.client5:httpclient5", version.ref = "httpcomponents-client5" }
hystrix = { module = "com.netflix.hystrix:hystrix-core", version.ref = "hystrix" }
jacksonDatabind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson-databind" }
jakarta-jmsApi = { module = "jakarta.jms:jakarta.jms-api", version = "3.1.0" }
jakarta-jmsApi = { module = "jakarta.jms:jakarta.jms-api", version = "3.0.0" }
jakarta-servletApi = { module = "jakarta.servlet:jakarta.servlet-api", version = "5.0.0" }
javalin = { module = "io.javalin:javalin", version = "5.6.2" }
javax-cacheApi = { module = "javax.cache:cache-api", version.ref = "javax-cache" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description 'Module for Jakarta 10+ based instrumentations'
description 'Module for Jakarta 9+ based instrumentations'

jar {
bundle {
Expand Down
2 changes: 1 addition & 1 deletion micrometer-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
implementation 'org.awaitility:awaitility'

testImplementation project(':micrometer-observation-test')
testImplementation project(':micrometer-jakarta10')
testImplementation project(':micrometer-jakarta9')

testImplementation 'org.jsr107.ri:cache-ri-impl'

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ include 'micrometer-test', 'micrometer-observation-test'
}

include 'micrometer-bom'
include 'micrometer-jakarta10'
include 'micrometer-jakarta9'
include 'micrometer-jetty11'
include 'micrometer-osgi-test'
include 'docs'

0 comments on commit 9ba2264

Please sign in to comment.