diff options
author | Dan Timoney <dtimoney@att.com> | 2020-09-03 11:28:18 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-09-03 15:28:54 +0000 |
commit | efc7259fc1ee2e14a59f10ce69eead4abecaae03 (patch) | |
tree | c94521cc9fdbb3e96ae830d4fbc69f6d8f5b9912 /ms | |
parent | e7f8cfa8439403a6360bd3225c5d0a8291bd0867 (diff) |
Add spring-boot-starter-validation dependency
Springboot starter version 2.3 no longer includes spring-boot-starter-validation
which now needs to be added as a separate dependency
Change-Id: I11b5dd40d96f3c1692bc23c75d508d5a39bcbbd7
Issue-ID: CCSDK-2633
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'ms')
-rw-r--r-- | ms/neng/.project | 46 | ||||
-rw-r--r-- | ms/sliboot/pom.xml | 4 |
2 files changed, 4 insertions, 46 deletions
diff --git a/ms/neng/.project b/ms/neng/.project deleted file mode 100644 index 2ede1b82..00000000 --- a/ms/neng/.project +++ /dev/null @@ -1,46 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>networkelementnamegen</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.wst.common.project.facet.core.builder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>org.springframework.ide.eclipse.core.springbuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.m2e.core.maven2Builder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.springframework.ide.eclipse.core.springnature</nature> - <nature>org.eclipse.jdt.core.javanature</nature> - <nature>org.eclipse.m2e.core.maven2Nature</nature> - <nature>org.eclipse.wst.common.project.facet.core.nature</nature> - <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> - </natures> -</projectDescription> diff --git a/ms/sliboot/pom.xml b/ms/sliboot/pom.xml index b0c1eac8..3d8fa7bf 100644 --- a/ms/sliboot/pom.xml +++ b/ms/sliboot/pom.xml @@ -51,6 +51,10 @@ <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> <groupId>org.onap.aaf.cadi</groupId> <artifactId>aaf-cadi-shiro</artifactId> <version>${aaf-shiro-bundle.version}</version> |