Skip to content

Commit a6bdd82

Browse files
authored
Merge pull request #65 from sdeleuze/metadata-version-fix
Metadata version fix
2 parents bf025d1 + dcec799 commit a6bdd82

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

metadata/io.netty/netty-transport/index.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@
55
"metadata-version": "4.1.80.Final",
66
"module": "io.netty:netty-transport",
77
"tested-versions": [
8-
"4.1.76.Final",
98
"4.1.80.Final"
109
]
10+
},
11+
{
12+
"metadata-version": "4.1.76.Final",
13+
"module": "io.netty:netty-transport",
14+
"tested-versions": [
15+
"4.1.76.Final"
16+
]
1117
}
1218
]

tests/tck-build-logic/src/main/groovy/org/graalvm/internal/tck/harness/MetadataLookupLogic.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class MetadataLookupLogic {
9696

9797
for (def entry in metadataIndex) {
9898
if (coordinatesMatch((String) entry["module"], groupId, artifactId) && ((List<String>) entry["tested-versions"]).contains(version)) {
99-
Path metadataDir = fullDir.resolve(version)
99+
Path metadataDir = fullDir.resolve((String) entry["metadata-version"])
100100
return metadataDir
101101
}
102102
}

0 commit comments

Comments
 (0)