Skip to content

Commit ca9c2a8

Browse files
committed
Start 2.x branch for 2.20
1 parent cf208e5 commit ca9c2a8

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
build:
13-
runs-on: 'ubuntu-22.04'
13+
runs-on: ubuntu-latest
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -19,6 +19,8 @@ jobs:
1919
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2020
steps:
2121
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
22+
with:
23+
ref: 2.x
2224
- name: Set up JDK
2325
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
2426
with:

.github/workflows/main.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
name: Build and Deploy Snapshot
22
on:
33
push:
4-
branches:
5-
- 3.x
6-
- "2.19"
4+
branches: [2.*]
75
paths-ignore:
86
- "README.md"
97
- "release-notes/*"
108
pull_request:
11-
branches:
12-
- 3.x
13-
- "2.19"
9+
branches: [2.*]
1410
paths-ignore:
1511
- "README.md"
1612
- "release-notes/*"
@@ -20,7 +16,7 @@ permissions:
2016

2117
jobs:
2218
build:
23-
runs-on: 'ubuntu-20.04'
19+
runs-on: 'ubuntu-24.04'
2420
strategy:
2521
fail-fast: false
2622
matrix:

datatypes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.module</groupId>
1111
<artifactId>jackson-modules-java8</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.datatype</groupId>
1515
<artifactId>jackson-datatype-jdk8</artifactId>

datetime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.module</groupId>
1111
<artifactId>jackson-modules-java8</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.datatype</groupId>
1515
<artifactId>jackson-datatype-jsr310</artifactId>

parameter-names/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.module</groupId>
1111
<artifactId>jackson-modules-java8</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<artifactId>jackson-module-parameter-names</artifactId>
1515
<name>Jackson-module-parameter-names</name>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<parent>
44
<groupId>com.fasterxml.jackson</groupId>
55
<artifactId>jackson-base</artifactId>
6-
<version>2.19.1-SNAPSHOT</version>
6+
<version>2.20.0-SNAPSHOT</version>
77
</parent>
88
<groupId>com.fasterxml.jackson.module</groupId>
99
<artifactId>jackson-modules-java8</artifactId>
1010
<name>Jackson modules: Java 8</name>
11-
<version>2.19.1-SNAPSHOT</version>
11+
<version>2.20.0-SNAPSHOT</version>
1212
<packaging>pom</packaging>
1313
<description>Parent pom for Jackson modules needed to support Java 8 features and types
1414
</description>

0 commit comments

Comments
 (0)