eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
RossC | ea31737 | 2020-05-07 13:25:34 +0100 | [diff] [blame] | 3 | Copyright (c) 2020 Nordix Foundation. |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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 | |
liamfallon | 755eb9d | 2020-01-22 12:11:11 +0000 | [diff] [blame] | 21 | <project |
| 22 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <parent> |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 28 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 29 | <artifactId>model</artifactId> |
a.sreekumar | 5db2ed0 | 2021-10-14 11:15:57 +0100 | [diff] [blame^] | 30 | <version>2.7.0-SNAPSHOT</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>basic-model</artifactId> |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>Basic Models used and model handling in Apex</description> |
RossC | ea31737 | 2020-05-07 13:25:34 +0100 | [diff] [blame] | 36 | <properties> |
| 37 | <sonar.exclusions> |
| 38 | **/package-info.java, |
| 39 | **/TestApexModel.java, |
| 40 | **/TestApexModelCreator.java |
| 41 | </sonar.exclusions> |
| 42 | </properties> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 43 | |
| 44 | <dependencies> |
liamfallon | 755eb9d | 2020-01-22 12:11:11 +0000 | [diff] [blame] | 45 | <dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 46 | <groupId>org.onap.policy.common</groupId> |
| 47 | <artifactId>utils</artifactId> |
| 48 | </dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 49 | <dependency> |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 50 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
waqas.ikram | 8e424a8 | 2018-05-24 14:39:38 +0100 | [diff] [blame] | 51 | <artifactId>utilities</artifactId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.eclipse.persistence</groupId> |
| 56 | <artifactId>eclipselink</artifactId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 57 | </dependency> |
liamfallon | 8e8f345 | 2018-12-15 09:47:58 +0000 | [diff] [blame] | 58 | <dependency> |
liamfallon | 755eb9d | 2020-01-22 12:11:11 +0000 | [diff] [blame] | 59 | <groupId>javax.xml.bind</groupId> |
| 60 | <artifactId>jaxb-api</artifactId> |
| 61 | <version>${version.javax.bind}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.glassfish.jaxb</groupId> |
| 65 | <artifactId>jaxb-runtime</artifactId> |
| 66 | <version>${version.javax.bind}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.glassfish</groupId> |
| 70 | <artifactId>javax.json</artifactId> |
| 71 | <version>${version.javax.json}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>javax.json</groupId> |
| 75 | <artifactId>javax.json-api</artifactId> |
| 76 | <version>${version.javax.json}</version> |
| 77 | </dependency> |
| 78 | <dependency> |
liamfallon | 8e8f345 | 2018-12-15 09:47:58 +0000 | [diff] [blame] | 79 | <groupId>org.mockito</groupId> |
| 80 | <artifactId>mockito-all</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 83 | </dependencies> |
| 84 | |
| 85 | <build> |
| 86 | <plugins> |
| 87 | <plugin> |
| 88 | <groupId>org.codehaus.mojo</groupId> |
| 89 | <artifactId>exec-maven-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>generate-xml-schema</id> |
| 93 | <phase>process-classes</phase> |
| 94 | <goals> |
| 95 | <goal>java</goal> |
| 96 | </goals> |
| 97 | <configuration> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 98 | <mainClass>org.onap.policy.apex.model.basicmodel.handling.ApexSchemaGenerator</mainClass> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 99 | <classpathScope>compile</classpathScope> |
| 100 | <arguments> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 101 | <argument>org.onap.policy.apex.model.basicmodel.concepts.AxModel</argument> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 102 | <argument>${project.build.directory}/model/xml/apex-basic-model.xsd</argument> |
| 103 | </arguments> |
| 104 | </configuration> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
| 108 | </plugins> |
| 109 | </build> |
liamfallon | 4d6fc38 | 2018-06-27 12:50:17 +0100 | [diff] [blame] | 110 | </project> |