Skip to content
Draft
Show file tree
Hide file tree
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.gradle;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.ExecutionContext;
Expand Down Expand Up @@ -374,7 +373,6 @@ void kotlinDslStringInterpolationFromGradleProperties() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void changeDependencyWithLowerVersionAfter() {
rewriteRun(
spec -> spec.recipe(new ChangeDependency("org.openrewrite", "plugin", "io.moderne", "moderne-gradle-plugin", "0.x", null, null, true)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package org.openrewrite.gradle;

import org.jspecify.annotations.Nullable;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
Expand Down Expand Up @@ -2179,7 +2178,6 @@ void issue4655() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void cannotDownloadMetaDataWhenNoRepositoriesAreDefined() {
rewriteRun(
buildGradle(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package org.openrewrite.gradle.plugins;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.gradle.ChangeDependency;
Expand Down Expand Up @@ -67,7 +66,6 @@ void changePlugin() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void changeApplyPluginSyntax() {
rewriteRun(
spec -> spec.recipes(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import org.intellij.lang.annotations.Language;
import org.jspecify.annotations.Nullable;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
Expand Down Expand Up @@ -80,7 +79,6 @@ void addDependenciesOnEmptyProject() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void dontAddDuplicateIfUpdateModelOnPriorRecipeCycleFailed() {
rewriteRun(
spec -> spec
Expand Down
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.junit.jupiter.api.io.TempDir;
import org.openrewrite.*;
Expand All @@ -42,7 +41,6 @@ class MavenDependencyFailuresTest implements RewriteTest {

@DocumentExample
@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void unresolvableParent() { // Dad said he was heading to the corner store for cigarettes, and hasn't been resolvable for the past 20 years :'(
rewriteRun(
spec -> spec
Expand Down Expand Up @@ -81,7 +79,6 @@ void unresolvableParent() { // Dad said he was heading to the corner store for c
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void unresolvableMavenMetadata() {
rewriteRun(
spec -> spec
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,6 @@ void deriveFromNexus() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void deriveFromNexusUpgrade() {
rewriteRun(
spec -> spec.recipe(new UpgradeDependencyVersion("*", "*", "latest.patch", null, null, null)),
Expand Down Expand Up @@ -1827,7 +1826,6 @@ void noManagedVersion() {
}

@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void badManagedVersion() {
rewriteRun(
spec -> spec.recipe(new UpgradeDependencyVersion("*", "*", "latest.patch", null, null, null)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ void update() {

@Issue("https://github.com/openrewrite/rewrite/issues/5065")
@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void repoUnreachable() {
rewriteRun(
spec -> spec.recipe(new UpgradePluginVersion(
Expand Down Expand Up @@ -248,7 +247,6 @@ void repoUnreachable() {

@Issue("https://github.com/openrewrite/rewrite/issues/5065")
@Test
@Disabled("2026-05-04 temporarily disabled after Artifactory introduction")
void noNewerVersion() {
rewriteRun(
spec -> spec.recipe(new UpgradePluginVersion(
Expand Down
Loading