Skip to content

Commit 2ed7924

Browse files
committed
Log4j critical update. Switching to 2.12.3 (Java 7) which fixes this (see https://logging.apache.org/log4j/2.x/security.html)
1 parent 5e89112 commit 2ed7924

File tree

3 files changed

+18
-33
lines changed

3 files changed

+18
-33
lines changed

modules/cli-module/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,19 +91,16 @@
9191
<dependency>
9292
<groupId>org.apache.logging.log4j</groupId>
9393
<artifactId>log4j-slf4j-impl</artifactId>
94-
<version>2.6.1</version>
9594
<scope>runtime</scope>
9695
</dependency>
9796
<dependency>
9897
<groupId>org.apache.logging.log4j</groupId>
9998
<artifactId>log4j-api</artifactId>
100-
<version>2.6.1</version>
10199
<scope>runtime</scope>
102100
</dependency>
103101
<dependency>
104102
<groupId>org.apache.logging.log4j</groupId>
105103
<artifactId>log4j-core</artifactId>
106-
<version>2.6.1</version>
107104
<scope>runtime</scope>
108105
</dependency>
109106

modules/simple-java-mail/pom.xml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -123,31 +123,4 @@
123123
</plugin>
124124
</plugins>
125125
</build>
126-
127-
<profiles>
128-
<profile>
129-
<id>standalone-cli</id>
130-
<dependencies>
131-
<dependency>
132-
<groupId>org.apache.logging.log4j</groupId>
133-
<artifactId>log4j-slf4j-impl</artifactId>
134-
<version>2.6.1</version>
135-
<scope>runtime</scope>
136-
</dependency>
137-
<dependency>
138-
<groupId>org.apache.logging.log4j</groupId>
139-
<artifactId>log4j-api</artifactId>
140-
<version>2.6.1</version>
141-
<scope>runtime</scope>
142-
</dependency>
143-
<dependency>
144-
<groupId>org.apache.logging.log4j</groupId>
145-
<artifactId>log4j-core</artifactId>
146-
<version>2.13.2</version>
147-
<scope>runtime</scope>
148-
</dependency>
149-
</dependencies>
150-
</profile>
151-
</profiles>
152-
153126
</project>

pom.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.bbottema</groupId>
88
<artifactId>modular-project-parent</artifactId>
9-
<version>1.0.14</version>
9+
<version>1.0.17</version>
1010
</parent>
1111

1212
<groupId>org.simplejavamail</groupId>
@@ -64,13 +64,13 @@
6464
<dependency>
6565
<groupId>org.powermock</groupId>
6666
<artifactId>powermock-module-junit4</artifactId>
67-
<version>2.0.4</version>
67+
<version>2.0.9</version>
6868
<scope>test</scope>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.powermock</groupId>
7272
<artifactId>powermock-api-mockito2</artifactId>
73-
<version>2.0.4</version>
73+
<version>2.0.9</version>
7474
<scope>test</scope>
7575
</dependency>
7676
<dependency>
@@ -99,6 +99,21 @@
9999
<artifactId>jsr305</artifactId>
100100
<version>3.0.2</version>
101101
</dependency>
102+
<dependency>
103+
<groupId>net.bytebuddy</groupId>
104+
<artifactId>byte-buddy-agent</artifactId>
105+
<version>1.10.14</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>net.bytebuddy</groupId>
109+
<artifactId>byte-buddy</artifactId>
110+
<version>1.10.14</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>junit</groupId>
114+
<artifactId>junit</artifactId>
115+
<version>4.13.1</version>
116+
</dependency>
102117
</dependencies>
103118
</dependencyManagement>
104119

0 commit comments

Comments
 (0)