blob: 2f683a9aebe51006bffb9decdf90f6b7683a08b7 [file] [log] [blame]
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +02001<?xml version="1.0" encoding="UTF-8"?>
Wojciech Sliwka032ff222019-07-10 13:48:52 +02002<!--
3 ============LICENSE_START=======================================================
4 Simulator
5 ================================================================================
6 Copyright (C) 2019 Nokia. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +020011
Wojciech Sliwka032ff222019-07-10 13:48:52 +020012 http://www.apache.org/licenses/LICENSE-2.0
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +020013
Wojciech Sliwka032ff222019-07-10 13:48:52 +020014 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
Marcin Migdal3b2d33d2018-08-20 12:03:10 +020021
Wojciech Sliwka032ff222019-07-10 13:48:52 +020022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>pom</packaging>
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +020027
Wojciech Sliwka032ff222019-07-10 13:48:52 +020028 <parent>
29 <groupId>org.onap.oparent</groupId>
30 <artifactId>oparent</artifactId>
31 <version>2.0.0</version>
32 </parent>
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +020033
Wojciech Sliwka032ff222019-07-10 13:48:52 +020034 <groupId>org.onap.simulator</groupId>
35 <artifactId>simulator-parent</artifactId>
36 <version>5.0.0-SNAPSHOT</version>
37 <modules>
38 <module>pnfsimulator</module>
wsliwka49653842019-08-08 09:56:34 +020039 <module>netconfsimulator</module>
40 <module>deployment</module>
Wojciech Sliwka032ff222019-07-10 13:48:52 +020041 </modules>
42 <properties>
43 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44 <maven.compiler.source>1.8</maven.compiler.source>
45 <maven.compiler.target>1.8</maven.compiler.target>
46 </properties>
Pawel Kadlubanski8d0066e2018-05-11 14:35:43 +020047
Wojciech Sliwka032ff222019-07-10 13:48:52 +020048 <profiles>
49 <profile>
50 <id>tests</id>
51 <activation>
52 <activeByDefault>false</activeByDefault>
53 </activation>
54 <modules>
55 <module>pnfsimulator/integration</module>
56 </modules>
57 </profile>
58 </profiles>
Marcin Migdalffd52662018-08-02 13:40:25 +020059
Wojciech Sliwka032ff222019-07-10 13:48:52 +020060 <build>
61 <plugins>
62 <plugin>
63 <artifactId>maven-checkstyle-plugin</artifactId>
64 <version>2.17</version>
65 <configuration>
66 <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
67 <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression>
68 </configuration>
69 </plugin>
70 <plugin>
71 <groupId>com.spotify</groupId>
72 <artifactId>docker-maven-plugin</artifactId>
73 <version>1.1.1</version>
74 </plugin>
75 </plugins>
76 </build>
Gary Wu284b23a2018-09-18 10:21:49 -070077</project>