Merge "Send logs to logstash"
[vid.git] / vid-ext-services-simulator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          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">
5     <modelVersion>4.0.0</modelVersion>
6     <groupId>org.onap.vid</groupId>
7     <artifactId>vid-ext-services-simulator</artifactId>
8     <version>1.0.0</version>
9     <name>VID Simulator</name>
10     <packaging>war</packaging>
11     <description>VID Simulator for mocking external peers</description>
12
13     <properties>
14         <encoding>UTF-8</encoding>
15         <epsdk.version>1.3.0</epsdk.version>
16         <springframework.version>4.3.22.RELEASE</springframework.version>
17         <hibernate.version>5.3.4.Final</hibernate.version>
18         <!-- Skip assembling the zip by default -->
19         <skipassembly>true</skipassembly>
20         <!-- Tests usually require some setup that maven cannot do, so skip. -->
21         <skiptests>true</skiptests>
22         <!-- this should be commented for local debugging -->
23         <!-- <deployenv>local</deployenv> -->
24         <nexusproxy>https://nexus.onap.org</nexusproxy>
25         <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
26         <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
27         <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
28
29         <!-- "none" will skip cobertura by default; enable the profile "cobertura" to enable it -->
30         <coberturaBuildPhase>none</coberturaBuildPhase>
31
32         <!-- will build docker-maven-plugin by default; enable the profile "no-docker" to disable it -->
33         <skipDockerBuild>false</skipDockerBuild>
34         <dockerBuildPhase>package</dockerBuildPhase>
35         <dockerPushPhase>deploy</dockerPushPhase>
36     </properties>
37
38     <profiles>
39         <profile>
40             <id>onap</id>
41             <properties>
42                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44                 <epsdk.version>1.1.0-SNAPSHOT</epsdk.version>
45                 <nexusproxy>https://nexus.onap.org</nexusproxy>
46                 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
47                 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
48                 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
49                 <sitePath>content/sites/site/org/openecomp/vid/${project.version}</sitePath>
50             </properties>
51
52             <repositories>
53                 <repository>
54                     <id>oss-snapshots</id>
55                     <name>oss Central - Snapshots</name>
56                     <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
57                 </repository>
58             </repositories>
59         </profile>
60
61         <profile>
62             <id>default</id>
63         </profile>
64
65         <!-- disable doclint, a new feature in Java 8, when generating javadoc -->
66         <profile>
67             <id>doclint-java8-disable</id>
68             <activation>
69                 <jdk>[1.8,)</jdk>
70             </activation>
71             <build>
72                 <plugins>
73                     <plugin>
74                         <groupId>org.apache.maven.plugins</groupId>
75                         <artifactId>maven-javadoc-plugin</artifactId>
76                         <version>2.10.4</version>
77                         <configuration>
78                             <additionalparam>-Xdoclint:none</additionalparam>
79                         </configuration>
80                     </plugin>
81                 </plugins>
82             </build>
83         </profile>
84
85         <profile>
86             <id>cobertura</id>
87             <properties>
88                 <coberturaBuildPhase>package</coberturaBuildPhase>
89             </properties>
90         </profile>
91
92         <profile>
93             <id>no-docker</id>
94             <properties>
95                 <skipDockerBuild>true</skipDockerBuild>
96                 <dockerBuildPhase>none</dockerBuildPhase>
97                 <dockerPushPhase>none</dockerPushPhase>
98             </properties>
99         </profile>
100
101         <profile>
102             <id>docker-proxy</id>
103             <!-- activate profile if environment variable `http_proxy` is set -->
104             <activation>
105                 <property>
106                     <name>env.http_proxy</name>
107                 </property>
108             </activation>
109             <properties>
110                 <docker.buildArg.http_proxy>${env.http_proxy}</docker.buildArg.http_proxy>
111             </properties>
112         </profile>
113
114     </profiles>
115
116     <dependencies>
117         <!-- mockserver -->
118         <dependency>
119             <groupId>org.mock-server</groupId>
120             <artifactId>mockserver-netty</artifactId>
121             <version>3.11</version>
122         </dependency>
123         <dependency>
124             <groupId>org.springframework</groupId>
125             <artifactId>spring-web</artifactId>
126             <version>${springframework.version}</version>
127         </dependency>
128         <dependency>
129             <groupId>org.springframework</groupId>
130             <artifactId>spring-webmvc</artifactId>
131             <version>${springframework.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>com.fasterxml.jackson.core</groupId>
135             <artifactId>jackson-annotations</artifactId>
136             <version>2.8.7</version>
137         </dependency>
138         <dependency>
139             <groupId>javax.xml.bind</groupId>
140             <artifactId>jaxb-api</artifactId>
141             <version>2.2.11</version>
142         </dependency>
143
144         <dependency>
145             <groupId>org.hibernate</groupId>
146             <artifactId>hibernate-entitymanager</artifactId>
147             <version>${hibernate.version}</version>
148         </dependency>
149         <dependency>
150             <groupId>org.hibernate</groupId>
151             <artifactId>hibernate-core</artifactId>
152             <version>${hibernate.version}</version>
153         </dependency>
154
155         <dependency>
156             <groupId>org.mariadb.jdbc</groupId>
157             <artifactId>mariadb-java-client</artifactId>
158             <version>2.2.6</version>
159         </dependency>
160
161         <dependency>
162             <groupId>org.hibernate.javax.persistence</groupId>
163             <artifactId>hibernate-jpa-2.1-api</artifactId>
164             <version>1.0.0.Final</version>
165         </dependency>
166
167         <dependency>
168             <groupId>com.google.code.gson</groupId>
169             <artifactId>gson</artifactId>
170             <version>2.8.0</version>
171         </dependency>
172
173     </dependencies>
174
175     <build>
176         <finalName>vidSimulator</finalName>
177         <plugins>
178             <plugin>
179                 <groupId>org.apache.maven.plugins</groupId>
180                 <artifactId>maven-compiler-plugin</artifactId>
181                 <version>3.1</version>
182                 <configuration>
183                     <source>1.8</source>
184                     <target>1.8</target>
185                 </configuration>
186             </plugin>
187
188             <plugin>
189                 <groupId>io.fabric8</groupId>
190                 <artifactId>docker-maven-plugin</artifactId>
191                 <version>0.27.2</version>
192
193                 <configuration>
194                     <skip>${skipDockerBuild}</skip>
195                     <images>
196                         <image>
197                             <name>onap/vid-simulator</name>
198                             <build>
199                                 <cleanup>remove</cleanup>
200                                 <dockerFileDir>${project.basedir}</dockerFileDir>
201                                 <tags>
202                                     <tag>${project.version}</tag>
203                                     <tag>latest</tag>
204                                 </tags>
205                             </build>
206                         </image>
207                     </images>
208                 </configuration>
209
210                 <executions>
211                     <execution>
212                         <id>generate-image</id>
213                         <phase>${dockerBuildPhase}</phase>
214                         <goals>
215                             <goal>build</goal>
216                         </goals>
217                     </execution>
218
219                     <execution>
220                         <id>push-image</id>
221                         <phase>${dockerPushPhase}</phase>
222                         <goals>
223                             <goal>build</goal>
224                             <goal>push</goal>
225                         </goals>
226                     </execution>
227                 </executions>
228
229             </plugin>
230
231         </plugins>
232     </build>
233 </project>