Skip to content

Commit bad7b77

Browse files
committed
Fixes to get GradleTest _almost_ pass for 3.0.0-rc2-SNAPSHOT
1 parent 84902bc commit bad7b77

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>tools.jackson</groupId>
66
<artifactId>jackson-base</artifactId>
7-
<version>3.0.0-rc1</version>
7+
<version>3.0.0-rc2-SNAPSHOT</version>
88
</parent>
99
<groupId>tools.jackson.test</groupId>
1010
<artifactId>jackson-integration-tests</artifactId>

src/test/resources/tools/jackson/integtest/gradle/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ dependencies {
2020
// implementation(platform("tools.jackson:jackson-bom:+"))
2121

2222
// 28-Apr-2023, tatu: Uncomment following (and comment ^^^) to test SNAPSHOT versions
23-
implementation(platform("tools.jackson:jackson-bom:3.0.0-rc1"))
23+
implementation(platform("tools.jackson:jackson-bom:3.0.0-rc2-SNAPSHOT"))
24+
// Need both new Snapshot repo (almost everything) and "old" (for jackson-annotations)
25+
repositories.maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
2426
repositories.maven("https://oss.sonatype.org/content/repositories/snapshots")
2527
}
2628

0 commit comments

Comments
 (0)