diff options
author | Max Benjamin <max.benjamin@att.com> | 2020-02-14 14:50:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-14 14:50:16 +0000 |
commit | 460b2c35e214b9422e9313a4bad8253669791ebf (patch) | |
tree | ec16d302fa24fa1a9929e881d6b4a91551008c6b /adapters/mso-ve-vnfm-adapter/pom.xml | |
parent | dbf7a49c67050dbd132146e4fa230bb5723dbc7d (diff) | |
parent | 361511c01e4e51dddb6e3bfe11b6728a76dbbfd0 (diff) |
Merge "Fixed, simplified and tested AuthorizationHeadersProvider (+small changes in poms)"
Diffstat (limited to 'adapters/mso-ve-vnfm-adapter/pom.xml')
-rw-r--r-- | adapters/mso-ve-vnfm-adapter/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/adapters/mso-ve-vnfm-adapter/pom.xml b/adapters/mso-ve-vnfm-adapter/pom.xml index 3518445b45..4472956eb7 100644 --- a/adapters/mso-ve-vnfm-adapter/pom.xml +++ b/adapters/mso-ve-vnfm-adapter/pom.xml @@ -59,10 +59,21 @@ </dependencies> <build> + <finalName>${project.artifactId}-${project.version}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <mainClass>org.onap.so.adapters.vevnfm.Application</mainClass> + </configuration> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + </execution> + </executions> </plugin> </plugins> </build> |