Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | a6fbd20 | 2019-01-22 14:19:54 -0800 | [diff] [blame] | 6 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 25 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <parent> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 29 | <groupId>org.onap.appc.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 31 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 32 | <relativePath /> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 33 | </parent> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 34 | <groupId>org.onap.appc</groupId> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 35 | |
| 36 | <artifactId>appc-dg-mdsal-bundle</artifactId> |
| 37 | <packaging>bundle</packaging> |
| 38 | |
| 39 | <properties> |
| 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 41 | <licenseDir>${project.parent.parent.parent.basedir}</licenseDir> |
| 42 | </properties> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>maven-bundle-plugin</artifactId> |
| 49 | <version>${bundle.plugin.version}</version> |
| 50 | <extensions>true</extensions> |
| 51 | <configuration> |
| 52 | <instructions> |
| 53 | <Export-Package>org.onap.appc.mdsal.*</Export-Package> |
| 54 | <Import-Package>*;resolution:=optional</Import-Package> |
| 55 | <DynamicImport-Package>*</DynamicImport-Package> |
| 56 | <Embed-Transitive>true</Embed-Transitive> |
| 57 | </instructions> |
| 58 | </configuration> |
| 59 | </plugin> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 60 | </plugins> |
| 61 | </build> |
| 62 | |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>junit</groupId> |
| 66 | <artifactId>junit</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
Michal Kabaj | 7022896 | 2018-02-01 14:45:28 +0100 | [diff] [blame] | 70 | <groupId>org.mockito</groupId> |
| 71 | <artifactId>mockito-core</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.powermock</groupId> |
| 75 | <artifactId>powermock-api-mockito</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.powermock</groupId> |
| 79 | <artifactId>powermock-module-junit4</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
Patrick Brady | 9246167 | 2019-02-27 13:41:53 -0800 | [diff] [blame] | 82 | <groupId>org.javassist</groupId> |
| 83 | <artifactId>javassist</artifactId> |
| 84 | <version>3.22.0-GA</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 88 | <groupId>org.opendaylight.controller</groupId> |
| 89 | <artifactId>config-api</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.opendaylight.controller</groupId> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 93 | <artifactId>sal-common-util</artifactId> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <artifactId>sal-test-model</artifactId> |
| 97 | <groupId>org.opendaylight.controller</groupId> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 101 | <groupId>org.apache.httpcomponents</groupId> |
| 102 | <artifactId>httpcore</artifactId> |
| 103 | <version>${apache.httpcomponents.version}</version> |
| 104 | </dependency> |
| 105 | <dependency> |
Joss Armstrong | 8fee66a | 2019-01-08 22:00:43 +0000 | [diff] [blame] | 106 | <groupId>org.apache.httpcomponents</groupId> |
| 107 | <artifactId>httpclient</artifactId> |
| 108 | <version>${apache.httpcomponents.version}</version> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 112 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 113 | <artifactId>sli-common</artifactId> |
| 114 | <scope>compile</scope> |
| 115 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 116 | <exclusions> |
| 117 | <exclusion> |
| 118 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 119 | <artifactId>dblib-provider</artifactId> |
| 120 | </exclusion> |
| 121 | </exclusions> |
| 122 | </dependency> |
| 123 | |
| 124 | <dependency> |
| 125 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 126 | <artifactId>sli-provider</artifactId> |
| 127 | <scope>compile</scope> |
| 128 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 129 | <exclusions> |
| 130 | <exclusion> |
| 131 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 132 | <artifactId>dblib-provider</artifactId> |
| 133 | </exclusion> |
| 134 | </exclusions> |
| 135 | </dependency> |
| 136 | |
| 137 | <dependency> |
| 138 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 139 | <artifactId>appc-common-bundle</artifactId> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 140 | <version>${project.version}</version> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.onap.appc</groupId> |
| 144 | <artifactId>appc-dg-mdsal-model</artifactId> |
| 145 | <version>${project.version}</version> |
| 146 | </dependency> |
| 147 | <dependency> |
| 148 | <groupId>commons-io</groupId> |
| 149 | <artifactId>commons-io</artifactId> |
| 150 | </dependency> |
| 151 | </dependencies> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 152 | <version>1.5.0-SNAPSHOT</version> |
Ramya Balaji | 31540f8 | 2018-01-08 12:40:57 -0500 | [diff] [blame] | 153 | </project> |