Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so.adapters</groupId> |
| 6 | <artifactId>mso-vnfm-adapter</artifactId> |
| 7 | <version>1.4.0-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <artifactId>mso-vnfm-etsi-adapter</artifactId> |
| 10 | <properties> |
| 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 12 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 13 | </properties> |
| 14 | <name>mso-vnfm-etsi-adapter</name> |
| 15 | <description>MSO ETSI compliant VNFM Adapter</description> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 16 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 17 | <build> |
| 18 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <groupId>org.springframework.boot</groupId> |
| 22 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 23 | <configuration> |
| 24 | <mainClass>org.onap.so.adapters.vnfmadapter.VnfmAdapterApplication</mainClass> |
| 25 | </configuration> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <goals> |
| 29 | <goal>repackage</goal> |
| 30 | </goals> |
| 31 | </execution> |
| 32 | </executions> |
| 33 | </plugin> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-jar-plugin</artifactId> |
| 37 | <executions> |
| 38 | <execution> |
| 39 | <id>original</id> |
| 40 | </execution> |
| 41 | </executions> |
| 42 | </plugin> |
| 43 | <plugin> |
| 44 | <groupId>org.jacoco</groupId> |
| 45 | <artifactId>jacoco-maven-plugin</artifactId> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-surefire-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <systemPropertyVariables> |
| 52 | <so.log.level>DEBUG</so.log.level> |
| 53 | </systemPropertyVariables> |
| 54 | <rerunFailingTestsCount>2</rerunFailingTestsCount> |
| 55 | <parallel>suites</parallel> |
| 56 | <useUnlimitedThreads>false</useUnlimitedThreads> |
| 57 | <threadCount>1</threadCount> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | <dependencies> |
| 63 | <dependency> |
| 64 | <groupId>org.springframework.boot</groupId> |
| 65 | <artifactId>spring-boot-starter-web</artifactId> |
MichaelMorris | df6508f | 2019-04-25 11:31:45 +0000 | [diff] [blame] | 66 | <exclusions> |
| 67 | <exclusion> |
| 68 | <groupId>com.fasterxml.jackson.core</groupId> |
| 69 | <artifactId>jackson-databind</artifactId> |
| 70 | </exclusion> |
| 71 | </exclusions> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-starter-security</artifactId> |
| 76 | <exclusions> |
| 77 | <exclusion> |
| 78 | <groupId>org.springframework.boot</groupId> |
| 79 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 80 | </exclusion> |
| 81 | </exclusions> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.springframework.boot</groupId> |
| 85 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.springframework.boot</groupId> |
| 89 | <artifactId>spring-boot-starter-test</artifactId> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.onap.so.adapters</groupId> |
| 94 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.onap.so.adapters</groupId> |
| 99 | <artifactId>mso-vnfm-adapter-api</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onap.so.adapters</groupId> |
| 104 | <artifactId>mso-vnfm-adapter-ext-clients</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.glassfish.jersey.core</groupId> |
| 109 | <artifactId>jersey-client</artifactId> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.glassfish.jersey.core</groupId> |
| 113 | <artifactId>jersey-common</artifactId> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.glassfish.jersey.core</groupId> |
| 117 | <artifactId>jersey-client</artifactId> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.glassfish.jersey.inject</groupId> |
| 121 | <artifactId>jersey-hk2</artifactId> |
| 122 | <version>2.26</version> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.glassfish.jersey.media</groupId> |
| 126 | <artifactId>jersey-media-json-jackson</artifactId> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.yaml</groupId> |
| 130 | <artifactId>snakeyaml</artifactId> |
| 131 | <version>1.23</version> |
| 132 | </dependency> |
| 133 | </dependencies> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 134 | </project> |