Skip to content

Commit 76a72a6

Browse files
committed
Bump quartz to 2.4.0 to fix CVE-2023-39017
1 parent 4535f11 commit 76a72a6

File tree

3 files changed

+14
-24
lines changed

3 files changed

+14
-24
lines changed

kernel/data-pipeline/core/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,18 @@
4444
<version>${project.version}</version>
4545
</dependency>
4646
<dependency>
47-
<groupId>org.apache.shardingsphere.elasticjob</groupId>
48-
<artifactId>elasticjob-lite-core</artifactId>
47+
<groupId>org.apache.shardingsphere</groupId>
48+
<artifactId>shardingsphere-jdbc</artifactId>
49+
<version>${project.version}</version>
4950
</dependency>
51+
5052
<dependency>
5153
<groupId>org.apache.shardingsphere.elasticjob</groupId>
5254
<artifactId>elasticjob-lite-lifecycle</artifactId>
5355
</dependency>
5456
<dependency>
55-
<groupId>org.apache.shardingsphere</groupId>
56-
<artifactId>shardingsphere-jdbc</artifactId>
57-
<version>${project.version}</version>
57+
<groupId>org.quartz-scheduler</groupId>
58+
<artifactId>quartz</artifactId>
5859
</dependency>
5960

6061
<dependency>

kernel/schedule/core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535

3636
<dependency>
3737
<groupId>org.apache.shardingsphere.elasticjob</groupId>
38-
<artifactId>elasticjob-lite-core</artifactId>
38+
<artifactId>elasticjob-lite-lifecycle</artifactId>
3939
</dependency>
4040
<dependency>
41-
<groupId>org.apache.shardingsphere.elasticjob</groupId>
42-
<artifactId>elasticjob-lite-lifecycle</artifactId>
41+
<groupId>org.quartz-scheduler</groupId>
42+
<artifactId>quartz</artifactId>
4343
</dependency>
4444
</dependencies>
4545
</project>

pom.xml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
<protobuf.version>3.25.8</protobuf.version>
114114

115115
<elasticjob.version>3.0.4</elasticjob.version>
116+
<quartz.version>2.4.0</quartz.version>
116117

117118
<slf4j.version>2.0.17</slf4j.version>
118119
<logback.version>1.3.16</logback.version>
@@ -478,25 +479,13 @@
478479

479480
<dependency>
480481
<groupId>org.apache.shardingsphere.elasticjob</groupId>
481-
<artifactId>elasticjob-lite-core</artifactId>
482+
<artifactId>elasticjob-lite-lifecycle</artifactId>
482483
<version>${elasticjob.version}</version>
483-
<exclusions>
484-
<exclusion>
485-
<groupId>com.zaxxer</groupId>
486-
<artifactId>HikariCP-java7</artifactId>
487-
</exclusion>
488-
</exclusions>
489484
</dependency>
490485
<dependency>
491-
<groupId>org.apache.shardingsphere.elasticjob</groupId>
492-
<artifactId>elasticjob-lite-lifecycle</artifactId>
493-
<version>${elasticjob.version}</version>
494-
<exclusions>
495-
<exclusion>
496-
<groupId>com.zaxxer</groupId>
497-
<artifactId>HikariCP-java7</artifactId>
498-
</exclusion>
499-
</exclusions>
486+
<groupId>org.quartz-scheduler</groupId>
487+
<artifactId>quartz</artifactId>
488+
<version>${quartz.version}</version>
500489
</dependency>
501490

502491
<dependency>

0 commit comments

Comments
 (0)