Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (c) 2021 Bell Canada. |
| 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 | |
| 20 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.cps</groupId> |
| 26 | <artifactId>cps-parent</artifactId> |
danielhanrahan | 19f963b | 2023-06-15 13:52:34 +0100 | [diff] [blame^] | 27 | <version>3.3.3-SNAPSHOT</version> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 28 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 29 | </parent> |
| 30 | |
| 31 | <artifactId>cps-events</artifactId> |
| 32 | <packaging>jar</packaging> |
| 33 | |
| 34 | <dependencies> |
| 35 | <!-- Used by Generated classes for json mapping--> |
| 36 | <dependency> |
| 37 | <groupId>com.fasterxml.jackson.core</groupId> |
| 38 | <artifactId>jackson-databind</artifactId> |
| 39 | </dependency> |
| 40 | <!-- T E S T D E P E N D E N C I E S --> |
| 41 | <dependency> |
| 42 | <groupId>org.codehaus.groovy</groupId> |
| 43 | <artifactId>groovy</artifactId> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.spockframework</groupId> |
| 48 | <artifactId>spock-core</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | </dependencies> |
| 52 | |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <plugin> |
| 56 | <groupId>org.jsonschema2pojo</groupId> |
| 57 | <artifactId>jsonschema2pojo-maven-plugin</artifactId> |
| 58 | <configuration> |
| 59 | <sourceDirectory>${basedir}/src/main/resources/schemas</sourceDirectory> |
| 60 | <targetPackage>org.onap.cps.event.model</targetPackage> |
| 61 | <generateBuilders>true</generateBuilders> |
Bruno Sakoto | b81d040 | 2021-07-15 06:41:04 -0400 | [diff] [blame] | 62 | <serializable>true</serializable> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 63 | </configuration> |
| 64 | </plugin> |
Bruno Sakoto | f549c7c | 2021-05-18 16:02:30 -0400 | [diff] [blame] | 65 | </plugins> |
| 66 | </build> |
| 67 | |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 68 | </project> |