JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
lukegleeson | 7e243c9 | 2023-04-20 15:32:12 +0100 | [diff] [blame] | 4 | Copyright (c) 2022-2023 Nordix Foundation. |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 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 | ============LICENSE_END========================================================= |
| 18 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | 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.cps</groupId> |
| 25 | <artifactId>cps-parent</artifactId> |
danielhanrahan | 19f963b | 2023-06-15 13:52:34 +0100 | [diff] [blame^] | 26 | <version>3.3.3-SNAPSHOT</version> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 27 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>cps-ncmp-events</artifactId> |
| 31 | <packaging>jar</packaging> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-databind</artifactId> |
| 37 | </dependency> |
mpriyank | 87f0b00 | 2023-05-04 11:24:29 +0100 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>javax.validation</groupId> |
| 40 | <artifactId>validation-api</artifactId> |
| 41 | </dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 42 | </dependencies> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.jsonschema2pojo</groupId> |
| 48 | <artifactId>jsonschema2pojo-maven-plugin</artifactId> |
| 49 | <configuration> |
| 50 | <sourceDirectory>${basedir}/src/main/resources/schemas</sourceDirectory> |
| 51 | <targetPackage>org.onap.cps.ncmp.event.model</targetPackage> |
| 52 | <generateBuilders>true</generateBuilders> |
| 53 | <serializable>true</serializable> |
mpriyank | 87f0b00 | 2023-05-04 11:24:29 +0100 | [diff] [blame] | 54 | <includeJsr303Annotations>true</includeJsr303Annotations> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 55 | </configuration> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | </project> |