ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.tools</groupId> |
| 25 | <artifactId>tools</artifactId> |
ramverma | 79e5ede | 2018-10-24 20:14:02 +0100 | [diff] [blame^] | 26 | <version>2.0.1-SNAPSHOT</version> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>tools-common</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>[${project.parent.artifactId}] Utilities for APEX tools</description> |
| 32 | |
| 33 | <properties> |
| 34 | <apex-apps-utilities-dir>${project.basedir}/src</apex-apps-utilities-dir> |
| 35 | </properties> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.commons</groupId> |
| 40 | <artifactId>commons-lang3</artifactId> |
| 41 | <version>3.6</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.commons</groupId> |
| 45 | <artifactId>commons-text</artifactId> |
| 46 | <version>1.1</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>commons-cli</groupId> |
| 50 | <artifactId>commons-cli</artifactId> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 51 | </dependency> |
| 52 | </dependencies> |
| 53 | |
| 54 | <build> |
| 55 | <resources> |
| 56 | <resource> |
| 57 | <directory>src/main/resources</directory> |
| 58 | <filtering>true</filtering> |
| 59 | <includes> |
| 60 | <include>**/app-version.txt</include> |
| 61 | </includes> |
| 62 | </resource> |
| 63 | <resource> |
| 64 | <directory>src/main/resources</directory> |
| 65 | <filtering>false</filtering> |
| 66 | <excludes> |
| 67 | <exclude>**/app-version.txt</exclude> |
| 68 | </excludes> |
| 69 | </resource> |
| 70 | </resources> |
| 71 | </build> |
Dinh Danh Le | a5a4427 | 2018-08-22 12:41:50 +0100 | [diff] [blame] | 72 | |
| 73 | <profiles> |
| 74 | <profile> |
| 75 | <id>apexSite</id> |
| 76 | <activation> |
| 77 | <property> |
| 78 | <name>apexSite</name> |
| 79 | </property> |
| 80 | </activation> |
| 81 | <properties> |
| 82 | <adsite-tools-common-dir>${project.basedir}/src</adsite-tools-common-dir> |
| 83 | </properties> |
| 84 | <distributionManagement> |
| 85 | <site> |
| 86 | <id>${project.artifactId}-site</id> |
| 87 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 88 | </site> |
| 89 | </distributionManagement> |
| 90 | </profile> |
| 91 | </profiles> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 92 | </project> |