Skip to content

Commit

Permalink
Temporarily use snapshots for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andriy-dmytruk committed Aug 23, 2024
1 parent 7d5e162 commit 259e102
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class FullMicronautRuntimeSpec extends AbstractEagerConfiguringFunctionalTest {
def "test execute tests for application for runtime: #runtime"() {
given:
settingsFile << "rootProject.name = 'hello-world'"
baseDir.resolve("gradle.properties").toFile() << "micronautServletVersion = 4.10.1-SNAPSHOT"
buildFile << """
plugins {
id "io.micronaut.application"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class MicronautRuntimeSpec extends AbstractGradleBuildSpec {
def "test execute tests for application for runtime: #runtime"() {
given:
settingsFile << "rootProject.name = 'hello-world'"
baseDir.resolve("gradle.properties").toFile() << "micronautServletVersion = 4.10.1-SNAPSHOT"
buildFile << """
plugins {
id "io.micronaut.minimal.application"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ abstract class AbstractGradleBuildSpec extends Specification {
return false
}

boolean allowSnapshots = false
boolean allowSnapshots = true
// This flag is only for local tests, do not push with this flag set to true
boolean allowMavenLocal = false

Expand Down

0 comments on commit 259e102

Please sign in to comment.