This commit is contained in:
ssamuel 2020-11-27 11:13:29 -06:00
Родитель d3dd6ce3e4
Коммит 0f13adeb81
3 изменённых файлов: 17 добавлений и 14 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -21,3 +21,4 @@ credentials.sbt
*.iml
universe.avro
sbt.json

Просмотреть файл

@ -1,16 +1,18 @@
{
"type" : "record",
"name" : "MapTree__Int",
"namespace" : "com.sksamuel.avro4s.Recursive",
"fields" : [ {
"name" : "value",
"type" : "int"
}, {
"name" : "children",
"type" : {
"type" : "map",
"values" : "MapTree__Int"
"type": "record",
"name": "MapTree__Int",
"namespace": "com.sksamuel.avro4s.Recursive",
"fields": [
{
"name": "value",
"type": "int"
},
"default":{}
} ]
{
"name": "children",
"type": {
"type": "map",
"values": "MapTree__Int"
}
}
]
}

Просмотреть файл

@ -14,7 +14,7 @@ object Build extends AutoPlugin {
val CatsVersion = "2.0.0"
val ShapelessVersion = "2.3.3"
val RefinedVersion = "0.9.18"
val MagnoliaVersion = "0.16.0"
val MagnoliaVersion = "0.17.0"
val SbtJmhVersion = "0.3.7"
val JmhVersion = "1.23"
}