Skip to content

Commit

Permalink
Fix version for Java 9, and add all existing versions
Browse files Browse the repository at this point in the history
  • Loading branch information
batmat committed Feb 7, 2019
1 parent 83ae660 commit aedb68d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion createJson.groovy
Expand Up @@ -175,7 +175,7 @@ class Generator {

// for each month, counts the number of JVM versions in use (using strict filtering to ignore weird/local JVM version names)
def generateJvmJson() {
final def JVM_VERSIONS = ["1.5", "1.6", "1.7", "1.8", "1.9"]
final def JVM_VERSIONS = ["1.5", "1.6", "1.7", "1.8", "9", "10", "11", "12", "13"]
def jvmVersionsRestriction = "(jvmv='" + JVM_VERSIONS.join("' OR jvmv='") + "')"
def fileName = 'jvms.json'
println "generating $fileName..."
Expand Down

0 comments on commit aedb68d

Please sign in to comment.