Skip to content

Commit

Permalink
Bumped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbknor committed Nov 17, 2019
1 parent 7da77a8 commit 5fb4503
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lazy val commonSettings = Seq(
organization := "com.kjetland",
organizationName := "mbknor",
scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.8", "2.13.0-M5"),
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.10", "2.13.1"),
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
Expand Down Expand Up @@ -46,8 +46,8 @@ lazy val commonSettings = Seq(
)


val jacksonVersion = "2.9.8"
val jacksonModuleScalaVersion = "2.9.8"
val jacksonVersion = "2.10.1"
val jacksonModuleScalaVersion = "2.10.1"
val slf4jVersion = "1.7.26"


Expand All @@ -56,7 +56,7 @@ lazy val deps = Seq(
"javax.validation" % "validation-api" % "2.0.1.Final",
"org.slf4j" % "slf4j-api" % slf4jVersion,
"io.github.classgraph" % "classgraph" % "4.8.21",
"org.scalatest" %% "scalatest" % "3.0.7" % "test",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"ch.qos.logback" % "logback-classic" % "1.2.3" % "test",
"com.github.java-json-tools" % "json-schema-validator" % "2.2.10" % "test",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonModuleScalaVersion % "test",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.2.3
sbt.version=1.3.3
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ class JsonSchemaGenerator
exampleValue => examples.add(exampleValue)
}
node.set("examples", examples)
()
}

// Look for @NotBlank
Expand Down Expand Up @@ -662,6 +663,7 @@ class JsonSchemaGenerator
exampleValue => examples.add(exampleValue)
}
node.set("examples", examples)
()
}
}

Expand Down Expand Up @@ -991,6 +993,7 @@ class JsonSchemaGenerator
val objectOptionsNode = JsonNodeFactory.instance.objectNode()
objectOptionsNode.set("multiple_editor_select_via_property", multipleEditorSelectViaPropertyNode)
thisObjectNode.set("options", objectOptionsNode)
()
}

}
Expand Down Expand Up @@ -1234,6 +1237,7 @@ class JsonSchemaGenerator
// Overwrite field
val value = updateNode.get(fieldName)
node.set(fieldName, value)
()
case _ =>
}
}
Expand Down Expand Up @@ -1369,6 +1373,7 @@ class JsonSchemaGenerator

definitionsHandler.getFinalDefinitionsNode().foreach {
definitionsNode => rootNode.set("definitions", definitionsNode)
()
}

rootNode
Expand Down

0 comments on commit 5fb4503

Please sign in to comment.