Skip to content

Commit

Permalink
Release Spock 2.4-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
leonard84 committed Nov 30, 2022
1 parent a6b6532 commit df979a8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:spock-release-version: 2.3
:spock-release-date: 2022-09-29
:spock-release-version: 2.4-M1
:spock-release-date: 2022-30-11
:spock-snapshot-version: 2.4

https://github.com/spockframework/spock/blob/master/LICENSE[image:https://img.shields.io/badge/License-Apache%202.0-blue.svg[License]]
Expand All @@ -13,14 +13,14 @@ https://gitter.im/spockframework/spock?utm_source=badge&utm_medium=badge&utm_cam
https://ge.spockframework.org/scans[image:https://img.shields.io/badge/Revved%20up%20by-Gradle%20Enterprise-06A0CE?logo=Gradle&labelColor=02303A[Revved
up by Gradle Enterprise]]

image::docs/images/spock-main-logo.png[width=100px, float=right]
image::docs/images/spock-main-logo.png[width=100px,float=right]

== Spock Framework

Spock is a BDD-style developer testing and specification framework for
Java and https://groovy-lang.org/[Groovy] applications. To learn more
Java and https://groovy-lang.org/[Groovy] applications.To learn more
about Spock, visit
https://spockframework.org[https://spockframework.org]. To run a sample
https://spockframework.org[https://spockframework.org].To run a sample
spec in your browser use the
https://gwc-experiment.appspot.com/[Groovy Web Console].

Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ description = "Spock Framework"

ext {
baseVersion = "2.4"
snapshotVersion = true
milestone = 0
snapshotVersion = false
milestone = 1
javaVersions = [8, 11, 17] // ensure that latest version is actually build on travis, otherwise no docs get published
javaVersion = (System.getProperty("javaVersion") ?: 8) as int
variants = [2.5, 3.0, 4.0]
variant = System.getProperty("variant") as BigDecimal ?: variants.first()
buildScan.tag "groovy-$variant"
if (variant == 2.5) {
groovyGroup = "org.codehaus.groovy"
groovyVersion = "2.5.19"
minGroovyVersion = "2.5.0"
maxGroovyVersion = "2.9.99"
groovyGroup = "org.codehaus.groovy"
groovyVersion = "2.5.19"
minGroovyVersion = "2.5.0"
maxGroovyVersion = "2.9.99"
if(javaVersion >= 17) {
throw new InvalidUserDataException("Groovy $variant is not compatible with Java $javaVersion")
}
Expand Down

0 comments on commit df979a8

Please sign in to comment.