MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame^] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.so.adapters</groupId> |
| 7 | <artifactId>mso-vnfm-adapter</artifactId> |
| 8 | <version>1.4.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | <artifactId>mso-vnfm-etsi-adapter</artifactId> |
| 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 14 | </properties> |
| 15 | <name>mso-vnfm-etsi-adapter</name> |
| 16 | <description>MSO ETSI compliant VNFM Adapter</description> |
| 17 | |
| 18 | <build> |
| 19 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.springframework.boot</groupId> |
| 23 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 24 | <configuration> |
| 25 | <mainClass>org.onap.so.adapters.vnfmadapter.VnfmAdapterApplication</mainClass> |
| 26 | </configuration> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <goals> |
| 30 | <goal>repackage</goal> |
| 31 | </goals> |
| 32 | </execution> |
| 33 | </executions> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-jar-plugin</artifactId> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <id>original</id> |
| 41 | </execution> |
| 42 | </executions> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.jacoco</groupId> |
| 46 | <artifactId>jacoco-maven-plugin</artifactId> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
| 50 | <dependencies> |
| 51 | <dependency> |
| 52 | <groupId>org.springframework.boot</groupId> |
| 53 | <artifactId>spring-boot-starter-web</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.springframework.boot</groupId> |
| 57 | <artifactId>spring-boot-starter-security</artifactId> |
| 58 | <exclusions> |
| 59 | <exclusion> |
| 60 | <groupId>org.springframework.boot</groupId> |
| 61 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 62 | </exclusion> |
| 63 | </exclusions> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.springframework.boot</groupId> |
| 67 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.springframework.boot</groupId> |
| 71 | <artifactId>spring-boot-starter-test</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onap.so.adapters</groupId> |
| 76 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
| 79 | </dependencies> |
| 80 | </project> |