blob: 90d37053165c510fe25bdcec17a48ff3b146d8f7 [file] [log] [blame]
Dmitry Puzikov7830af02019-03-27 13:55:13 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson, Tieto. All rights reserved.
Jim Hahn0fe23332020-01-13 16:36:38 -05004 Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
Dmitry Puzikov7830af02019-03-27 13:55:13 +01005 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 SPDX-License-Identifier: Apache-2.0
19 ============LICENSE_END=========================================================
20-->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.policy.parent</groupId>
Dmitry Puzikov8c0eac42019-04-17 14:25:46 +020026 <artifactId>integration</artifactId>
Paul Vaduva4da9d442019-06-27 18:00:57 +020027 <version>3.0.1</version>
Pamela Dragosh60a9cf42019-05-01 11:26:58 -040028 <relativePath />
Dmitry Puzikov7830af02019-03-27 13:55:13 +010029 </parent>
30
31 <groupId>org.onap.policy.docker</groupId>
32 <artifactId>docker</artifactId>
Paul Vaduva4da9d442019-06-27 18:00:57 +020033 <version>2.0.0-SNAPSHOT</version>
Dmitry Puzikov8c0eac42019-04-17 14:25:46 +020034
Dmitry Puzikov7830af02019-03-27 13:55:13 +010035 <packaging>pom</packaging>
Pamela Dragoshfbe06092019-12-02 09:17:42 -050036 <name>policy-docker</name>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010037 <properties>
38 <!-- Project common build settings -->
39 <maven.compiler.source>1.8</maven.compiler.source>
40 <maven.compiler.target>1.8</maven.compiler.target>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 </properties>
43
44 <profiles>
45 <profile>
46 <id>docker</id>
47 <modules>
Jim Hahn0fe23332020-01-13 16:36:38 -050048 <module>policy-jre</module>
49 <module>policy-jdk</module>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010050 </modules>
51 </profile>
52 </profiles>
53</project>