Skip to content

Commit 483fd19

Browse files
Copilotomercnetslavikm
authored
build(deps): refine dependency scopes to minimize burden on consumers (#229)
Co-authored-by: omercnet <639682+omercnet@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Slavik Markovich <s@descope.com> Co-authored-by: Omer Cohen <git@omerc.net>
1 parent dbd23ea commit 483fd19

File tree

4 files changed

+18
-25
lines changed

4 files changed

+18
-25
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
java: [8, 11, 15, 17, 20]
27+
max-parallel: 1
2728
name: Build ${{ matrix.java }}
2829
runs-on: ubuntu-latest
2930
steps:

examples/check-pwd-policy/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<maven.compiler.release>17</maven.compiler.release>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<org.projectlombok.version>1.18.36</org.projectlombok.version>
14+
<org.projectlombok.version>1.18.38</org.projectlombok.version>
1515
</properties>
1616

1717
<dependencies>
@@ -23,17 +23,17 @@
2323
<dependency>
2424
<artifactId>jackson-databind</artifactId>
2525
<groupId>com.fasterxml.jackson.core</groupId>
26-
<version>2.18.1</version>
26+
<version>2.19.2</version>
2727
</dependency>
2828
<dependency>
2929
<artifactId>jackson-datatype-jsr310</artifactId>
3030
<groupId>com.fasterxml.jackson.datatype</groupId>
31-
<version>2.18.1</version>
31+
<version>2.19.2</version>
3232
</dependency>
3333
<dependency>
3434
<artifactId>commons-lang3</artifactId>
3535
<groupId>org.apache.commons</groupId>
36-
<version>3.17.0</version>
36+
<version>3.18.0</version>
3737
</dependency>
3838

3939
<!-- LOMBOK -->

examples/management-cli/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<maven.compiler.source>17</maven.compiler.source>
1313
<maven.compiler.target>17</maven.compiler.target>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<org.projectlombok.version>1.18.36</org.projectlombok.version>
15+
<org.projectlombok.version>1.18.38</org.projectlombok.version>
1616
</properties>
1717

1818
<dependencies>
@@ -29,17 +29,17 @@
2929
<dependency>
3030
<artifactId>jackson-databind</artifactId>
3131
<groupId>com.fasterxml.jackson.core</groupId>
32-
<version>2.18.1</version>
32+
<version>2.19.2</version>
3333
</dependency>
3434
<dependency>
3535
<artifactId>jackson-datatype-jsr310</artifactId>
3636
<groupId>com.fasterxml.jackson.datatype</groupId>
37-
<version>2.18.1</version>
37+
<version>2.19.2</version>
3838
</dependency>
3939
<dependency>
4040
<artifactId>commons-lang3</artifactId>
4141
<groupId>org.apache.commons</groupId>
42-
<version>3.17.0</version>
42+
<version>3.18.0</version>
4343
</dependency>
4444

4545
<!-- LOMBOK -->

pom.xml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,12 @@
6363

6464
<!-- LOGGING -->
6565
<dependency>
66-
<artifactId>log4j-api</artifactId>
67-
<groupId>org.apache.logging.log4j</groupId>
68-
<version>2.25.0</version>
69-
</dependency>
70-
<dependency>
71-
<artifactId>log4j-core</artifactId>
72-
<groupId>org.apache.logging.log4j</groupId>
73-
<version>2.25.0</version>
74-
</dependency>
75-
<dependency>
76-
<artifactId>log4j-slf4j-impl</artifactId>
77-
<groupId>org.apache.logging.log4j</groupId>
78-
<version>2.25.0</version>
66+
<artifactId>slf4j-api</artifactId>
67+
<groupId>org.slf4j</groupId>
68+
<version>2.0.17</version>
7969
</dependency>
8070

81-
<!-- DOTENV-->
71+
<!-- DOTENV -->
8272
<dependency>
8373
<groupId>io.github.cdimascio</groupId>
8474
<artifactId>dotenv-java</artifactId>
@@ -148,7 +138,7 @@
148138
<dependency>
149139
<groupId>commons-io</groupId>
150140
<artifactId>commons-io</artifactId>
151-
<version>2.19.0</version>
141+
<version>2.20.0</version>
152142
</dependency>
153143
<dependency>
154144
<groupId>org.apache.httpcomponents.client5</groupId>
@@ -158,12 +148,14 @@
158148
<dependency>
159149
<artifactId>jackson-databind</artifactId>
160150
<groupId>com.fasterxml.jackson.core</groupId>
161-
<version>2.19.1</version>
151+
<version>2.19.2</version>
152+
<scope>provided</scope>
162153
</dependency>
163154
<dependency>
164155
<artifactId>jackson-dataformat-yaml</artifactId>
165156
<groupId>com.fasterxml.jackson.dataformat</groupId>
166-
<version>2.19.1</version>
157+
<version>2.19.2</version>
158+
<scope>test</scope>
167159
</dependency>
168160
</dependencies>
169161
<build>

0 commit comments

Comments
 (0)