Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright © 2017-2018 AT&T Intellectual Property. |
| 4 | Modifications Copyright © 2018 IBM. |
| 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 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.onap.ccsdk.parent</groupId> |
| 23 | <artifactId>binding-parent</artifactId> |
| 24 | <version>1.2.0</version> |
| 25 | <relativePath/> |
| 26 | </parent> |
| 27 | |
| 28 | <groupId>org.onap.ccsdk.features</groupId> |
| 29 | <version>0.4.0-SNAPSHOT</version> |
| 30 | <artifactId>blueprints-assignment-provider</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | <name>Blueprints Assignment - Provider</name> |
| 33 | <url>http://maven.apache.org</url> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.ccsdk.features</groupId> |
| 38 | <artifactId>blueprints-generator-provider</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
Timoney, Dan (dt5972) | f5da531 | 2018-10-23 09:21:16 -0400 | [diff] [blame] | 42 | <groupId>com.fasterxml.jackson.core</groupId> |
| 43 | <artifactId>jackson-core</artifactId> |
| 44 | <version>${jackson.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.fasterxml.jackson.core</groupId> |
| 48 | <artifactId>jackson-databind</artifactId> |
| 49 | <version>${jackson.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | <artifactId>jackson-annotations</artifactId> |
| 54 | <version>${jackson.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>com.fasterxml.jackson.module</groupId> |
| 58 | <artifactId>jackson-module-jsonSchema</artifactId> |
| 59 | <version>${jackson.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame^] | 62 | <groupId>junit</groupId> |
| 63 | <artifactId>junit</artifactId> |
| 64 | <version>${junit.version}</version> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.sling</groupId> |
| 69 | <artifactId>org.apache.sling.testing.osgi-mock</artifactId> |
| 70 | <version>2.3.2</version> |
| 71 | <scope>test</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.powermock</groupId> |
| 75 | <artifactId>powermock-api-mockito</artifactId> |
| 76 | <version>1.6.6</version> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.powermock</groupId> |
| 81 | <artifactId>powermock-module-junit4</artifactId> |
| 82 | <version>1.6.6</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | </dependencies> |
| 86 | |
| 87 | <build> |
| 88 | <plugins> |
| 89 | <plugin> |
| 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-javadoc-plugin</artifactId> |
| 92 | <configuration> |
| 93 | <additionalparam>-Xdoclint:none</additionalparam> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.felix</groupId> |
| 98 | <artifactId>maven-bundle-plugin</artifactId> |
| 99 | <version>${maven.bundle.version}</version> |
| 100 | <extensions>true</extensions> |
| 101 | <configuration> |
| 102 | <instructions> |
Timoney, Dan (dt5972) | f5da531 | 2018-10-23 09:21:16 -0400 | [diff] [blame] | 103 | <Bundle-Name>${project.artifactId}</Bundle-Name> |
| 104 | <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> |
| 105 | <Export-Package>org.onap.ccsdk.features.assignment, |
| 106 | org.onap.ccsdk.features.assignment.data, |
| 107 | org.onap.ccsdk.features.assignment.service, |
| 108 | org.onap.ccsdk.features.assignment.processor, |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame^] | 109 | org.onap.ccsdk.features.assignment.processor.custom |
| 110 | </Export-Package> |
| 111 | </instructions> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
| 116 | </project> |