Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2021 Nordix Foundation. |
| 5 | ================================================================================ |
| 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" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.clamp</groupId> |
| 28 | <artifactId>policy-clamp</artifactId> |
| 29 | <version>6.1.2-SNAPSHOT</version> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.policy.clamp.participant</groupId> |
| 33 | <artifactId>policy-clamp-participant</artifactId> |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>participants that communicate with the runtime server to handle control loops</description> |
| 36 | <packaging>pom</packaging> |
| 37 | |
| 38 | <modules> |
| 39 | <module>participant-intermediary</module> |
| 40 | <module>participant-impl</module> |
| 41 | </modules> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.clamp</groupId> |
| 46 | <artifactId>policy-clamp-common</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onap.policy.clamp</groupId> |
| 51 | <artifactId>policy-clamp-models</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <artifactId>maven-assembly-plugin</artifactId> |
| 60 | <configuration> |
| 61 | <archive> |
| 62 | <manifest> |
| 63 | <mainClass>org.onap.policy.clamp.controlloop.participant.simulator.main.startstop.Main</mainClass> |
| 64 | </manifest> |
| 65 | </archive> |
| 66 | <descriptorRefs> |
| 67 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 68 | </descriptorRefs> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 74 | </project> |