Singal, Kapil (ks220y) | f086bce | 2018-09-04 23:41:26 -0400 | [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 |
|
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
Alexis de Talhouët | ea45fbf | 2018-09-11 11:13:56 -0400 | [diff] [blame] | 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>
|
Singal, Kapil (ks220y) | f086bce | 2018-09-04 23:41:26 -0400 | [diff] [blame] | 23 |
|
Alexis de Talhouët | ea45fbf | 2018-09-11 11:13:56 -0400 | [diff] [blame] | 24 | <parent>
|
| 25 | <groupId>org.onap.ccsdk.parent</groupId>
|
| 26 | <artifactId>binding-parent</artifactId>
|
| 27 | <version>1.1.0-SNAPSHOT</version>
|
| 28 | <relativePath/>
|
| 29 | </parent>
|
Singal, Kapil (ks220y) | f086bce | 2018-09-04 23:41:26 -0400 | [diff] [blame] | 30 |
|
Alexis de Talhouët | ea45fbf | 2018-09-11 11:13:56 -0400 | [diff] [blame] | 31 | <groupId>org.onap.ccsdk.config</groupId>
|
| 32 | <version>0.3.0-SNAPSHOT</version>
|
| 33 | <artifactId>blueprints-assignment-provider</artifactId>
|
| 34 | <packaging>bundle</packaging>
|
| 35 | <name>Blueprints Assignment - Provider</name>
|
| 36 | <url>http://maven.apache.org</url>
|
| 37 |
|
| 38 | <dependencies>
|
| 39 | <dependency>
|
Alexis de Talhouët | ea45fbf | 2018-09-11 11:13:56 -0400 | [diff] [blame] | 40 | <groupId>org.onap.ccsdk.config</groupId>
|
| 41 | <artifactId>blueprints-generator-provider</artifactId>
|
| 42 | <version>${project.version}</version>
|
| 43 | </dependency>
|
| 44 | <dependency>
|
| 45 | <groupId>junit</groupId>
|
| 46 | <artifactId>junit</artifactId>
|
| 47 | <version>${junit.version}</version>
|
| 48 | <scope>test</scope>
|
| 49 | </dependency>
|
| 50 | <dependency>
|
| 51 | <groupId>org.apache.sling</groupId>
|
| 52 | <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
|
| 53 | <version>2.3.2</version>
|
| 54 | <scope>test</scope>
|
| 55 | </dependency>
|
| 56 | <dependency>
|
| 57 | <groupId>org.powermock</groupId>
|
| 58 | <artifactId>powermock-api-mockito</artifactId>
|
| 59 | <version>1.6.6</version>
|
| 60 | <scope>test</scope>
|
| 61 | </dependency>
|
| 62 | <dependency>
|
| 63 | <groupId>org.powermock</groupId>
|
| 64 | <artifactId>powermock-module-junit4</artifactId>
|
| 65 | <version>1.6.6</version>
|
| 66 | <scope>test</scope>
|
| 67 | </dependency>
|
| 68 | </dependencies>
|
| 69 |
|
| 70 | <build>
|
| 71 | <plugins>
|
| 72 | <plugin>
|
| 73 | <groupId>org.apache.maven.plugins</groupId>
|
| 74 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 75 | <configuration>
|
| 76 | <additionalparam>-Xdoclint:none</additionalparam>
|
| 77 | </configuration>
|
| 78 | </plugin>
|
| 79 | <plugin>
|
| 80 | <groupId>org.apache.felix</groupId>
|
| 81 | <artifactId>maven-bundle-plugin</artifactId>
|
| 82 | <version>${maven.bundle.version}</version>
|
| 83 | <extensions>true</extensions>
|
| 84 | <configuration>
|
| 85 | <instructions>
|
| 86 | <Bundle-SymbolicName>org.onap.ccsdk.config.assignment</Bundle-SymbolicName>
|
| 87 | <Export-Package>org.onap.ccsdk.config.assignment,
|
| 88 | org.onap.ccsdk.config.assignment.data,
|
| 89 | org.onap.ccsdk.config.assignment.service,
|
| 90 | org.onap.ccsdk.config.assignment.processor,
|
| 91 | org.onap.ccsdk.config.assignment.processor.custom
|
| 92 | </Export-Package>
|
Alexis de Talhouët | ea45fbf | 2018-09-11 11:13:56 -0400 | [diff] [blame] | 93 | </instructions>
|
| 94 | </configuration>
|
| 95 | </plugin>
|
| 96 | </plugins>
|
| 97 | </build>
|
Singal, Kapil (ks220y) | f086bce | 2018-09-04 23:41:26 -0400 | [diff] [blame] | 98 | </project>
|