Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" 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 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.so</groupId> |
| 7 | <artifactId>so</artifactId> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 8 | <version>1.7.1-SNAPSHOT</version> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 9 | </parent> |
| 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | <artifactId>so-simulator</artifactId> |
Smokowski, Steven | f388c24 | 2020-01-30 16:39:49 -0500 | [diff] [blame] | 12 | <groupId>org.onap.so.simulator</groupId> |
| 13 | <name>SO REST Simulator</name> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 14 | <packaging>jar</packaging> |
| 15 | |
| 16 | <properties> |
| 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 19 | <citrus.simulator.version>1.1.0</citrus.simulator.version> |
Mnushkin, Dmitry (dm4252) | 1d1a6fa | 2020-02-11 09:36:12 -0600 | [diff] [blame] | 20 | <spring.boot.version>2.0.9.RELEASE</spring.boot.version> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 21 | </properties> |
Mnushkin, Dmitry (dm4252) | 1d1a6fa | 2020-02-11 09:36:12 -0600 | [diff] [blame] | 22 | <dependencyManagement> |
| 23 | <dependencies> |
| 24 | <dependency> |
| 25 | <groupId>org.springframework.boot</groupId> |
| 26 | <artifactId>spring-boot-dependencies</artifactId> |
| 27 | <version>${spring.boot.version}</version> |
| 28 | <type>pom</type> |
| 29 | <scope>import</scope> |
| 30 | </dependency> |
| 31 | </dependencies> |
| 32 | </dependencyManagement> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.springframework.boot</groupId> |
| 36 | <artifactId>spring-boot-starter-web</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.springframework.boot</groupId> |
| 40 | <artifactId>spring-boot-starter</artifactId> |
| 41 | </dependency> |
| 42 | <!-- Citrus Simulator --> |
| 43 | <dependency> |
| 44 | <groupId>com.consol.citrus</groupId> |
| 45 | <artifactId>citrus-simulator-starter</artifactId> |
| 46 | <version>${citrus.simulator.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>com.consol.citrus</groupId> |
| 50 | <artifactId>citrus-simulator-ui</artifactId> |
| 51 | <version>${citrus.simulator.version}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onap.so</groupId> |
Benjamin, Max | 4f774ee | 2020-04-28 15:13:12 -0400 | [diff] [blame] | 55 | <artifactId>aai-client</artifactId> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
Smokowski, Steven | f388c24 | 2020-01-30 16:39:49 -0500 | [diff] [blame] | 59 | <groupId>org.glassfish.jersey.core</groupId> |
| 60 | <artifactId>jersey-client</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onap.logging-analytics</groupId> |
| 64 | <artifactId>logging-slf4j</artifactId> |
Smokowski, Steven | f388c24 | 2020-01-30 16:39:49 -0500 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 67 | <groupId>com.consol.citrus</groupId> |
| 68 | <artifactId>citrus-ws</artifactId> |
| 69 | <version>2.7.8</version> |
| 70 | </dependency> |
| 71 | </dependencies> |
| 72 | |
| 73 | <build> |
| 74 | <plugins> |
| 75 | <plugin> |
| 76 | <artifactId>maven-compiler-plugin</artifactId> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 77 | <configuration> |
| 78 | <encoding>${project.build.sourceEncoding}</encoding> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 79 | </configuration> |
| 80 | </plugin> |
| 81 | <plugin> |
| 82 | <groupId>org.springframework.boot</groupId> |
| 83 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 84 | <version>${springboot.version}</version> |
| 85 | <configuration> |
| 86 | <mainClass>org.onap.so.simulator.Simulator</mainClass> |
| 87 | </configuration> |
| 88 | <executions> |
| 89 | <execution> |
| 90 | <goals> |
| 91 | <goal>repackage</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>io.fabric8</groupId> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 98 | <artifactId>docker-maven-plugin</artifactId> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 99 | <executions> |
| 100 | <execution> |
| 101 | <id>start</id> |
| 102 | </execution> |
| 103 | </executions> |
| 104 | </plugin> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 105 | <plugin> |
| 106 | <groupId>org.apache.maven.plugins</groupId> |
| 107 | <artifactId>maven-jar-plugin</artifactId> |
| 108 | <executions> |
| 109 | <execution> |
| 110 | <id>original</id> |
| 111 | <phase>package</phase> |
| 112 | </execution> |
| 113 | </executions> |
| 114 | </plugin> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 115 | </plugins> |
| 116 | </build> |
| 117 | |
| 118 | </project> |