Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | f43a7e6 | 2017-07-21 12:13:56 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Docker files |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
Guo Ruijing | 0f54805 | 2017-08-03 12:02:57 +0000 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.oparent</groupId> |
| 28 | <artifactId>oparent</artifactId> |
liamfallon | af65715 | 2018-03-14 21:39:28 +0000 | [diff] [blame] | 29 | <version>1.1.0</version> |
Guo Ruijing | 0f54805 | 2017-08-03 12:02:57 +0000 | [diff] [blame] | 30 | <relativePath/> |
| 31 | </parent> |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 32 | |
Guo Ruijing | f43a7e6 | 2017-07-21 12:13:56 +0000 | [diff] [blame] | 33 | <groupId>org.onap.policy.docker</groupId> |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 34 | <artifactId>docker</artifactId> |
Jessica Wagantall | 34d39e9 | 2017-11-18 18:38:53 -0800 | [diff] [blame] | 35 | <version>1.2.0-SNAPSHOT</version> |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 36 | <packaging>pom</packaging> |
Pamela Dragosh | 687f2fc | 2017-04-28 10:52:46 -0400 | [diff] [blame] | 37 | <name>Policy Engine - Docker build</name> |
Guo Ruijing | f43a7e6 | 2017-07-21 12:13:56 +0000 | [diff] [blame] | 38 | <description>ONAP Policy Docker Build</description> |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 39 | |
Pamela Dragosh | 063d848 | 2017-11-10 20:45:15 -0500 | [diff] [blame] | 40 | <properties> |
| 41 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 42 | </properties> |
| 43 | |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 44 | <build> |
| 45 | <plugins> |
Pamela Dragosh | 3fe4d9c | 2017-03-07 15:39:48 -0500 | [diff] [blame] | 46 | <plugin> |
| 47 | <groupId>org.codehaus.mojo</groupId> |
| 48 | <artifactId>exec-maven-plugin</artifactId> |
| 49 | <version>1.6.0</version> |
| 50 | <executions> |
| 51 | <execution> |
| 52 | <id>get-target-version</id> |
| 53 | <phase>prepare-package</phase> |
| 54 | <goals> |
| 55 | <goal>exec</goal> |
| 56 | </goals> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | <configuration> |
| 60 | <executable>echo</executable> |
| 61 | <workingDirectory>${project.build.directory}</workingDirectory> |
| 62 | <arguments> |
| 63 | <argument>${project.version}</argument> |
| 64 | </arguments> |
| 65 | <outputFile>${project.build.directory}/version</outputFile> |
| 66 | </configuration> |
| 67 | </plugin> |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 68 | |
| 69 | </plugins> |
| 70 | </build> |
| 71 | |
| 72 | </project> |