Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2020 Nordix Foundation. |
| 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.gui</groupId> |
| 25 | <artifactId>policy-gui</artifactId> |
rameshiyer27 | 1d4d45c | 2024-07-12 16:06:24 +0000 | [diff] [blame^] | 26 | <version>4.0.1-SNAPSHOT</version> |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>gui-common</artifactId> |
| 30 | <packaging>pom</packaging> |
| 31 | <name>${project.artifactId}</name> |
| 32 | |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-assembly-plugin</artifactId> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <id>make shared resources</id> |
| 41 | <goals> |
| 42 | <goal>single</goal> |
| 43 | </goals> |
| 44 | <phase>package</phase> |
| 45 | <configuration> |
| 46 | <descriptors> |
| 47 | <descriptor>src/main/assembly/resources.xml</descriptor> |
| 48 | </descriptors> |
| 49 | </configuration> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
liamfallon | ee41415 | 2020-07-17 09:22:46 +0100 | [diff] [blame] | 55 | </project> |