Skip to content

Commit

Permalink
Merge pull request eclipse-kapua#4125 from MDeLuise/deps-bumpLogback
Browse files Browse the repository at this point in the history
⬆️ [Dependencies] `logback` to `1.3.12` and Update Dependencies for Compatibility
  • Loading branch information
Coduz authored Oct 29, 2024
2 parents d5e338d + 553a7e4 commit 17bda9a
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/gateway/features/karaf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<packaging>feature</packaging>

<properties>
<karaf.version>4.4.2</karaf.version>
<karaf.version>4.4.6</karaf.version>
</properties>

<dependencies>
Expand Down
7 changes: 7 additions & 0 deletions consumer/lifecycle-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,13 @@
</filter>
</filters>
<transformers>
<!-- added by 2.7 -->
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
<resource>META-INF/persistence.xml</resource>
</transformer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public void doNothing() {

public static void main(String[] args) {
//org.springframework.context.ApplicationContext is not needed now so don't keep the SpringApplication.run return
System.setProperty("org.springframework.boot.logging.LoggingSystem", "none");
SpringApplication.run(LifecycleApplication.class, args);
}
}
7 changes: 7 additions & 0 deletions consumer/telemetry-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,13 @@
</filter>
</filters>
<transformers>
<!-- added by 2.7 -->
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
<resource>META-INF/persistence.xml</resource>
</transformer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public void doNothing() {

public static void main(String[] args) {
//org.springframework.context.ApplicationContext is not needed now so don't keep the SpringApplication.run return
System.setProperty("org.springframework.boot.logging.LoggingSystem", "none");
SpringApplication.run(TelemetryApplication.class, args);
}

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<camel.version>3.21.0</camel.version> <!-- latest 3.11.0 -->
<spring.version>5.3.23</spring.version> <!-- latest 5.3.8 -->
<spring-security.version>5.7.5</spring-security.version> <!-- latest 5.5.1 -->
<spring-boot.version>2.5.14</spring-boot.version> <!-- latest 2.5.2 --> <!-- 2.3.x is not fully supported by camel (will be on camel 3.4) -->
<spring-boot.version>2.7.18</spring-boot.version>

<aopalliance.version>1.0</aopalliance.version>
<artemis.version>2.31.2</artemis.version>
Expand Down Expand Up @@ -114,7 +114,7 @@
<liquibase.version>3.6.3</liquibase.version>
<log4j-api.version>2.17.1</log4j-api.version>
<log4j2-mock.version>0.0.2</log4j2-mock.version>
<logback.version>1.2.13</logback.version> <!-- Logback 1.3.x requires slf4j 2.x. Logback 1.4.x requires Java 11. See https://logback.qos.ch/dependencies.html-->
<logback.version>1.3.12</logback.version>
<mockito.version>1.10.19</mockito.version>
<netty.version>4.1.100.Final</netty.version>
<netty3.version>3.10.6.Final</netty3.version>
Expand All @@ -128,7 +128,7 @@
<reflections.version>0.10.2</reflections.version>
<scada-utils.version>0.4.0</scada-utils.version>
<shiro.version>1.12.0</shiro.version>
<slf4j.version>1.7.33</slf4j.version>
<slf4j.version>2.0.0</slf4j.version>
<snakeyaml.version>2.2</snakeyaml.version>
<spotify.version>8.15.1</spotify.version>
<swagger-ui.version>5.3.1</swagger-ui.version>
Expand Down
7 changes: 7 additions & 0 deletions service/authentication-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,13 @@
</filter>
</filters>
<transformers>
<!-- added by 2.7 -->
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
<resource>META-INF/persistence.xml</resource>
</transformer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public void doNothing() {

public static void main(String[] args) {
//org.springframework.context.ApplicationContext is not needed now so don't keep the SpringApplication.run return
System.setProperty("org.springframework.boot.logging.LoggingSystem", "none");
SpringApplication.run(AuthenticationApplication.class, args);
}

Expand Down

0 comments on commit 17bda9a

Please sign in to comment.