diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-06-09 18:23:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-09 18:23:49 +0000 |
commit | 9deb780264c7d12aa932fbb3ff2d442fcb3e8d5a (patch) | |
tree | ca4f78ed517be2dc51592eeae6fbc08585931d67 /participant/participant-impl/participant-impl-policy/pom.xml | |
parent | 5e7f7c3fdf6b9f1b04d0bfefa678e19823605ea7 (diff) | |
parent | 8a269b8f73838e46323502e671ec88ba09707f8e (diff) |
Merge "Convert Policy Participant to SpringBoot Application"
Diffstat (limited to 'participant/participant-impl/participant-impl-policy/pom.xml')
-rw-r--r-- | participant/participant-impl/participant-impl-policy/pom.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/participant/participant-impl/participant-impl-policy/pom.xml b/participant/participant-impl/participant-impl-policy/pom.xml index a5a75626e..a0176588b 100644 --- a/participant/participant-impl/participant-impl-policy/pom.xml +++ b/participant/participant-impl/participant-impl-policy/pom.xml @@ -31,4 +31,55 @@ <artifactId>policy-clamp-participant-impl-policy</artifactId> <name>${project.artifactId}</name> <description>Policy participant, that allows Policy to partake in control loops</description> + + <properties> + <springboot.version>2.4.4</springboot.version> + </properties> + + <dependencyManagement> + <dependencies> + <!-- Spring Boot BOM --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-dependencies</artifactId> + <version>${springboot.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>${springboot.version}</version> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + <phase>package</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |