MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
MichaelMorris | 0a86617 | 2019-04-09 21:44:39 +0000 | [diff] [blame] | 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"> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 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> |
MichaelMorris | 4602430 | 2019-04-04 16:06:42 +0000 | [diff] [blame] | 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-surefire-plugin</artifactId> |
| 51 | <configuration> |
| 52 | <systemPropertyVariables> |
| 53 | <so.log.level>DEBUG</so.log.level> |
| 54 | </systemPropertyVariables> |
| 55 | <rerunFailingTestsCount>2</rerunFailingTestsCount> |
| 56 | <parallel>suites</parallel> |
| 57 | <useUnlimitedThreads>false</useUnlimitedThreads> |
| 58 | <threadCount>1</threadCount> |
| 59 | </configuration> |
| 60 | </plugin> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 61 | </plugins> |
| 62 | </build> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>org.springframework.boot</groupId> |
| 66 | <artifactId>spring-boot-starter-web</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.springframework.boot</groupId> |
| 70 | <artifactId>spring-boot-starter-security</artifactId> |
| 71 | <exclusions> |
| 72 | <exclusion> |
| 73 | <groupId>org.springframework.boot</groupId> |
| 74 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 75 | </exclusion> |
| 76 | </exclusions> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.springframework.boot</groupId> |
| 80 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-starter-test</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onap.so.adapters</groupId> |
| 89 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
MichaelMorris | bc30428 | 2019-03-21 12:52:58 +0000 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.onap.so.adapters</groupId> |
| 94 | <artifactId>mso-vnfm-adapter-api</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | </dependency> |
MichaelMorris | 44a205e | 2019-04-02 13:46:47 +0000 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.onap.so.adapters</groupId> |
| 99 | <artifactId>mso-vnfm-adapter-ext-clients</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.glassfish.jersey.core</groupId> |
| 104 | <artifactId>jersey-client</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.glassfish.jersey.core</groupId> |
| 108 | <artifactId>jersey-common</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.glassfish.jersey.core</groupId> |
| 112 | <artifactId>jersey-client</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.glassfish.jersey.inject</groupId> |
| 116 | <artifactId>jersey-hk2</artifactId> |
| 117 | <version>2.26</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.glassfish.jersey.media</groupId> |
| 121 | <artifactId>jersey-media-json-jackson</artifactId> |
| 122 | </dependency> |
MichaelMorris | 0a86617 | 2019-04-09 21:44:39 +0000 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>org.yaml</groupId> |
| 125 | <artifactId>snakeyaml</artifactId> |
| 126 | <version>1.23</version> |
| 127 | </dependency> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 128 | </dependencies> |
| 129 | </project> |