We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nestedRepositories
config
1 parent 35476b5 commit e3e7069Copy full SHA for e3e7069
model/src/main/kotlin/Repository.kt
@@ -113,6 +113,10 @@ private class RepositoryDeserializer : StdDeserializer<Repository>(Repository::c
113
jsonMapper.treeToValue<RepositoryProvenance>(node["provenance"])
114
}
115
116
- return Repository(provenance = parsedProvenance)
+
117
+ val nestedRepositories = jsonMapper.treeToValue<Map<String, VcsInfo>>(node["nested_repositories"])
118
+ val config = jsonMapper.treeToValue<RepositoryConfiguration>(node["config"])
119
120
+ return Repository(provenance = parsedProvenance, nestedRepositories, config)
121
122
0 commit comments