Skip to content
Snippets Groups Projects
Commit 58a840ec authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

Merge branch 'increment-lib' into 'main'

Increment lib

See merge request !701
parents 345087a8 077b678f
No related branches found
No related tags found
2 merge requests!705Production Release | nshmp-haz,!701Increment lib
Pipeline #224217 failed
...@@ -11,7 +11,7 @@ micronautVersion = 3.2.3 ...@@ -11,7 +11,7 @@ micronautVersion = 3.2.3
micronautRxVersion = 2.1.1 micronautRxVersion = 2.1.1
nodePluginVersion = 3.0.1 nodePluginVersion = 3.0.1
nodeVersion = 16.3.0 nodeVersion = 16.3.0
nshmpLibVersion = 1.2.11 nshmpLibVersion = 1.2.12
nshmpWsUtilsVersion = 0.3.11 nshmpWsUtilsVersion = 0.3.11
openApiVersion = 4.0.0 openApiVersion = 4.0.0
shadowVersion = 7.1.2 shadowVersion = 7.1.2
......
...@@ -54,10 +54,11 @@ public class FeaturesService { ...@@ -54,10 +54,11 @@ public class FeaturesService {
* *
* @param schemas The Swagger schemas * @param schemas The Swagger schemas
*/ */
@SuppressWarnings("rawtypes")
public static void featureTypeSchema(Map<String, Schema> schemas) { public static void featureTypeSchema(Map<String, Schema> schemas) {
var schema = new Schema<FeatureType>(); var schema = new Schema<FeatureType>();
schema.setType(SchemaTypeUtil.STRING_TYPE); schema.setType(SchemaTypeUtil.STRING_TYPE);
featureTypes().stream().forEach(featureType -> schema.addEnumItemObject(featureType)); featureTypes().forEach(featureType -> schema.addEnumItemObject(featureType));
schemas.put( schemas.put(
String.format( String.format(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment