ramverma | 6029d25 | 2018-05-25 11:55: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.model</groupId> |
| 25 | <artifactId>model</artifactId> |
| 26 | <version>2.0.0-SNAPSHOT</version> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>event-model</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>Event Models used in Apex</description> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
| 36 | <artifactId>context-model</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | </dependencies> |
| 40 | |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.codehaus.mojo</groupId> |
| 45 | <artifactId>exec-maven-plugin</artifactId> |
| 46 | <executions> |
| 47 | <execution> |
| 48 | <id>generate-xml-schema</id> |
| 49 | <phase>process-classes</phase> |
| 50 | <goals> |
| 51 | <goal>java</goal> |
| 52 | </goals> |
| 53 | <configuration> |
| 54 | <mainClass>org.onap.policy.apex.model.basicmodel.handling.ApexSchemaGenerator</mainClass> |
| 55 | <classpathScope>compile</classpathScope> |
| 56 | <arguments> |
| 57 | <argument>org.onap.policy.apex.model.eventmodel.concepts.AxEventModel</argument> |
| 58 | <argument>${project.build.directory}/model/xml/apex-event-model.xsd</argument> |
| 59 | </arguments> |
| 60 | </configuration> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame^] | 67 | <profiles> |
| 68 | <profile> |
| 69 | <id>apexSite</id> |
| 70 | <activation> |
| 71 | <property> |
| 72 | <name>apexSite</name> |
| 73 | </property> |
| 74 | </activation> |
| 75 | <distributionManagement> |
| 76 | <site> |
| 77 | <id>${project.artifactId}-site</id> |
| 78 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 79 | </site> |
| 80 | </distributionManagement> |
| 81 | </profile> |
| 82 | </profiles> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 83 | </project> |