Skip to content

Commit

Permalink
fix: use separate rewrite-polyglot version (#233) (#235)
Browse files Browse the repository at this point in the history
This commit fixes issue #233, where specifying a
rewriteVersion inside the rewrite configuration block
would result in rewrite-polyglot failing to resolve
to a proper version.

Co-authored-by: Wesley Rogers <[email protected]>
  • Loading branch information
MagicalAsh and Wesley Rogers authored Oct 10, 2023
1 parent 5e7be11 commit bd6372d
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,13 @@ public String getRewriteVersion() {
return rewriteVersion;
}

private String rewritePolyglotVersion;
@Override
public String getRewritePolyglotVersion() {
if (rewriteVersion == null) {
if (rewritePolyglotVersion == null) {
return getVersionProps().getProperty("org.openrewrite:rewrite-polyglot");
}
return rewriteVersion;
return rewritePolyglotVersion;
}

private String rewriteGradleModelVersion;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright ${year} the original author or authors.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openrewrite.gradle

import org.assertj.core.api.Assertions.assertThat
import org.gradle.testkit.runner.TaskOutcome
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.io.TempDir
import java.io.File

class RewriteResolveDependenciesTest : RewritePluginTest {
@Test
fun `Specifying a rewriteVersion does not cause build failures`(
@TempDir projectDir: File
) {
gradleProject(projectDir) {
buildGradle("""
plugins {
id("java")
id("org.openrewrite.rewrite")
}
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
rewrite {
rewriteVersion = "8.6.1"
}
""")
}

val result = runGradle(projectDir, "rewriteResolveDependencies")
val rewriteDryRunResult = result.task(":rewriteResolveDependencies")!!
assertThat(rewriteDryRunResult.outcome).isEqualTo(TaskOutcome.SUCCESS)
}

}

0 comments on commit bd6372d

Please sign in to comment.