Skip to content

Commit 50b2fca

Browse files
committed
Dependency updates
1 parent 1476474 commit 50b2fca

File tree

9 files changed

+15
-19
lines changed

9 files changed

+15
-19
lines changed

.github/workflows/android-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
java_version: [8]
1919
steps:
2020
- name: Setup Maven Action
21-
uses: s4u/setup-maven-action@v1.8.0
21+
uses: s4u/setup-maven-action@v1.14.0
2222
with:
2323
checkout-fetch-depth: 0
2424
java-version: ${{ matrix.java_version }}

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Test JDK ${{ matrix.java_version }}
2121
steps:
2222
- name: Setup Maven Action
23-
uses: s4u/setup-maven-action@v1.8.0
23+
uses: s4u/setup-maven-action@v1.14.0
2424
with:
2525
checkout-fetch-depth: 0
2626
java-version: ${{ matrix.java_version }}

.github/workflows/combine-prs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
# Steps represent a sequence of tasks that will be executed as part of the job
3232
steps:
33-
- uses: actions/github-script@v6
33+
- uses: actions/github-script@v7
3434
id: fetch-branch-names
3535
name: Fetch branch names
3636
with:
@@ -121,7 +121,7 @@ jobs:
121121
git pull origin $sourcebranches --no-edit
122122
git push origin $COMBINE_BRANCH_NAME
123123
# Creates a PR with the new combined branch
124-
- uses: actions/github-script@v6
124+
- uses: actions/github-script@v7
125125
name: Create Combined Pull Request
126126
env:
127127
PRS_STRING: ${{ steps.fetch-branch-names.outputs.prs-string }}

.github/workflows/gradle-wrapper-validation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
working-directory: jsonschema2pojo-gradle-plugin/example/android
1919
steps:
2020
- uses: actions/checkout@v3
21-
- uses: gradle/wrapper-validation-action@v1
21+
- uses: gradle/wrapper-validation-action@v3

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ repositories {
3838
mavenCentral()
3939
}
4040
41-
dependencies {
42-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
43-
}
44-
4541
jsonSchema2Pojo {
4642
targetPackage = 'com.example'
4743
}

jsonschema2pojo-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<dependency>
9999
<groupId>org.apache.httpcomponents</groupId>
100100
<artifactId>httpclient</artifactId>
101-
<version>4.5.13</version>
101+
<version>4.5.14</version>
102102
<scope>test</scope>
103103
</dependency>
104104
</dependencies>

jsonschema2pojo-gradle-plugin/example/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ dependencies {
3030
// Required for @Generated annotation
3131
implementation 'org.glassfish:javax.annotation:10.0-b28'
3232
// Required if generating Gson annotations
33-
implementation 'com.google.code.gson:gson:2.10.1'
33+
implementation 'com.google.code.gson:gson:2.11.0'
3434
// Required if generating Moshi 1.x annotations
3535
implementation 'com.squareup.moshi:moshi:1.12.0'
3636
// Required if generating JSR-303 annotations
3737
implementation 'javax.validation:validation-api:2.0.1.Final'
3838
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
3939
// Required if generating Jackson 2 annotations
40-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
40+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
4141
}
4242

4343
// Each configuration is set to the default value

jsonschema2pojo-gradle-plugin/example/android/lib/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ android {
2626

2727
dependencies {
2828
// Required if generating Gson annotations
29-
implementation 'com.google.code.gson:gson:2.10.1'
29+
implementation 'com.google.code.gson:gson:2.11.0'
3030
// Required if generating Moshi 1.x annotations
3131
implementation 'com.squareup.moshi:moshi:1.12.0'
3232
// Required if generating JSR-303 annotations
3333
implementation 'javax.validation:validation-api:2.0.1.Final'
3434
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
3535
// Required if generating Jackson 2 annotations
36-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
36+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
3737
}
3838

3939
// Each configuration is set to the default value

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<url>https://github.com/joelittlejohn/jsonschema2pojo</url>
3838
<connection>scm:git:[email protected]:joelittlejohn/jsonschema2pojo.git</connection>
3939
<developerConnection>scm:git:[email protected]:joelittlejohn/jsonschema2pojo.git</developerConnection>
40-
<tag>HEAD</tag>
41-
</scm>
40+
<tag>HEAD</tag>
41+
</scm>
4242

4343
<licenses>
4444
<license>
@@ -67,7 +67,7 @@
6767
<plugins>
6868
<plugin>
6969
<artifactId>maven-clean-plugin</artifactId>
70-
<version>3.2.0</version>
70+
<version>3.4.0</version>
7171
</plugin>
7272
<plugin>
7373
<artifactId>maven-compiler-plugin</artifactId>
@@ -79,7 +79,7 @@
7979
</plugin>
8080
<plugin>
8181
<artifactId>maven-deploy-plugin</artifactId>
82-
<version>3.1.0</version>
82+
<version>3.1.2</version>
8383
</plugin>
8484
<plugin>
8585
<artifactId>maven-enforcer-plugin</artifactId>
@@ -95,7 +95,7 @@
9595
</plugin>
9696
<plugin>
9797
<artifactId>maven-install-plugin</artifactId>
98-
<version>3.1.0</version>
98+
<version>3.1.2</version>
9999
</plugin>
100100
<plugin>
101101
<artifactId>maven-jar-plugin</artifactId>

0 commit comments

Comments
 (0)