Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 3 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 5 | |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 6 | <modelVersion>4.0.0</modelVersion> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 7 | |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.onap.so</groupId> |
| 10 | <artifactId>adapters</artifactId> |
seshukm | b9af26a | 2020-02-26 19:30:17 +0800 | [diff] [blame] | 11 | <version>1.6.0-SNAPSHOT</version> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 12 | </parent> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 13 | |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 14 | <groupId>org.onap.so.adapters</groupId> |
Piotr Borelowski | 589118a | 2020-04-29 14:40:27 +0200 | [diff] [blame] | 15 | <artifactId>etsi-sol002-adapter</artifactId> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 16 | <packaging>jar</packaging> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 17 | |
Piotr Borelowski | 589118a | 2020-04-29 14:40:27 +0200 | [diff] [blame] | 18 | <name>ETSI SOL002 Application Jar</name> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 19 | |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.springframework.boot</groupId> |
| 23 | <artifactId>spring-boot-starter-web</artifactId> |
| 24 | </dependency> |
| 25 | <dependency> |
Piotr Borelowski | 1e37b70 | 2020-02-14 09:15:38 +0100 | [diff] [blame] | 26 | <groupId>org.springframework.retry</groupId> |
| 27 | <artifactId>spring-retry</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 30 | <groupId>org.onap.so.adapters</groupId> |
waqas.ikram | 12bfb7b | 2020-04-08 15:48:21 +0100 | [diff] [blame] | 31 | <artifactId>etsi-sol003-lcm-api</artifactId> |
| 32 | <version>${project.version}</version> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.onap.so.adapters</groupId> |
| 36 | <artifactId>etsi-sol003-lcm-ext-clients</artifactId> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 37 | <version>${project.version}</version> |
| 38 | </dependency> |
Piotr Borelowski | 74a3c19 | 2020-01-15 17:58:27 +0100 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.onap.so</groupId> |
| 41 | <artifactId>common</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.glassfish.jersey.core</groupId> |
| 46 | <artifactId>jersey-common</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.glassfish.jersey.core</groupId> |
| 50 | <artifactId>jersey-client</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.glassfish.jersey.inject</groupId> |
| 54 | <artifactId>jersey-hk2</artifactId> |
| 55 | </dependency> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 56 | <dependency> |
Piotr Borelowski | 1e37b70 | 2020-02-14 09:15:38 +0100 | [diff] [blame] | 57 | <groupId>org.projectlombok</groupId> |
| 58 | <artifactId>lombok</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 61 | <groupId>org.springframework.boot</groupId> |
| 62 | <artifactId>spring-boot-starter-test</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | |
| 67 | <build> |
Piotr Borelowski | 361511c | 2020-02-11 10:00:02 +0100 | [diff] [blame] | 68 | <finalName>${project.artifactId}-${project.version}</finalName> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 69 | <plugins> |
| 70 | <plugin> |
| 71 | <groupId>org.springframework.boot</groupId> |
| 72 | <artifactId>spring-boot-maven-plugin</artifactId> |
Piotr Borelowski | 361511c | 2020-02-11 10:00:02 +0100 | [diff] [blame] | 73 | <configuration> |
| 74 | <mainClass>org.onap.so.adapters.vevnfm.Application</mainClass> |
| 75 | </configuration> |
| 76 | <executions> |
| 77 | <execution> |
| 78 | <goals> |
| 79 | <goal>repackage</goal> |
| 80 | </goals> |
| 81 | </execution> |
| 82 | </executions> |
Piotr Borelowski | 17413dd | 2020-01-21 09:23:23 +0100 | [diff] [blame] | 83 | </plugin> |
| 84 | </plugins> |
| 85 | </build> |
Piotr Borelowski | 926a348 | 2019-12-17 12:35:37 +0100 | [diff] [blame] | 86 | |
| 87 | </project> |