Skip to content

Commit 14d658a

Browse files
committed
Start 2.x for 2.20
1 parent 3639762 commit 14d658a

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/dep_build_v2.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
build:
1313
# Do we want wide matrix build? For now, limited
14-
runs-on: 'ubuntu-22.04'
14+
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -20,6 +20,8 @@ jobs:
2020
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
with:
24+
ref: 2.x
2325
- name: Set up JDK
2426
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2527
with:

.github/workflows/main.yml

+3-7
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/*"
@@ -19,7 +15,7 @@ permissions:
1915

2016
jobs:
2117
build:
22-
runs-on: 'ubuntu-22.04'
18+
runs-on: 'ubuntu-24.04'
2319
strategy:
2420
fail-fast: false
2521
matrix:

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson</groupId>
1111
<artifactId>jackson-base</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.dataformat</groupId>
1515
<artifactId>jackson-dataformat-xml</artifactId>
16-
<version>2.19.1-SNAPSHOT</version>
16+
<version>2.20.0-SNAPSHOT</version>
1717
<name>Jackson-dataformat-XML</name>
1818
<packaging>jar</packaging>
1919
<description>Data format extension for Jackson to offer

0 commit comments

Comments
 (0)