Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package org.openrewrite.maven;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.test.RewriteTest;
Expand Down Expand Up @@ -306,8 +305,7 @@ void noIdMatch1SameSnapshots() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void updateToSpringBoot30Snapshot() {
void updateToSpringBootSnapshot() {
rewriteRun(
spec -> spec.recipes(
new AddRepository("boot-snapshots", "https://repo.spring.io/snapshot", null, null,
Expand All @@ -316,7 +314,7 @@ void updateToSpringBoot30Snapshot() {
new UpgradeParentVersion(
"org.springframework.boot",
"spring-boot-starter-parent",
"3.0.0-SNAPSHOT",
"4.0.0-SNAPSHOT",
null,
null)
),
Expand All @@ -326,7 +324,7 @@ void updateToSpringBoot30Snapshot() {
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<version>3.4.0</version>
</parent>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
Expand All @@ -338,7 +336,7 @@ void updateToSpringBoot30Snapshot() {
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
Expand Down
Loading