Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
mojahidi | 3df3182 | 2017-08-29 18:20:26 +0530 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
mojahidi | 3df3182 | 2017-08-29 18:20:26 +0530 | [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 | |
mojahidi | 3df3182 | 2017-08-29 18:20:26 +0530 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 28 | <groupId>org.onap.appc.parent</groupId> |
| 29 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 31 | <relativePath /> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 32 | </parent> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 33 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 34 | <artifactId>appc-artifact-handler-provider</artifactId> |
| 35 | <packaging>bundle</packaging> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
| 42 | <extensions>true</extensions> |
| 43 | <configuration> |
| 44 | <instructions> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 45 | <Bundle-SymbolicName>org.onap.appc.artifact.handler</Bundle-SymbolicName> |
| 46 | <Bundle-Activator>org.onap.appc.artifact.handler.SdcArtifactHandlerActivator</Bundle-Activator> |
| 47 | <Export-Package>org.onap.appc.artifact.handler,org.opendaylight.controller.config.yang.config.artifact-handler_provider.impl</Export-Package> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 48 | <Import-Package>!com.google,!org.apache.commons.configuration,*;resolution:=optional</Import-Package> |
Patrick Brady | 3ffa74f | 2018-05-14 14:01:46 -0700 | [diff] [blame] | 49 | <Embed-Dependency>commons-configuration,guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml</Embed-Dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 50 | </instructions> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 51 | </configuration> |
| 52 | </plugin> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 53 | </plugins> |
| 54 | </build> |
| 55 | |
| 56 | <dependencies> |
| 57 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 58 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 59 | <artifactId>appc-artifact-handler-model</artifactId> |
Patrick Brady | 226725a | 2018-05-11 09:06:09 -0700 | [diff] [blame] | 60 | <version>${project.version}</version> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.opendaylight.controller</groupId> |
| 64 | <artifactId>config-api</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 67 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 68 | <artifactId>appc-yang-generator</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.opendaylight.controller</groupId> |
| 74 | <artifactId>sal-binding-config</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.opendaylight.controller</groupId> |
| 78 | <artifactId>sal-binding-api</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
Patrick Brady | 226725a | 2018-05-11 09:06:09 -0700 | [diff] [blame] | 81 | <groupId>org.opendaylight.mdsal</groupId> |
| 82 | <artifactId>yang-binding</artifactId> |
| 83 | </dependency> |
| 84 | <dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 85 | <groupId>org.opendaylight.controller</groupId> |
| 86 | <artifactId>sal-common-util</artifactId> |
| 87 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 88 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 89 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 90 | <artifactId>sli-common</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 93 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 94 | <artifactId>sli-provider</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
Dilip kumar Pampana | 819f39b | 2018-01-05 11:47:22 -0500 | [diff] [blame] | 97 | <groupId>commons-configuration</groupId> |
| 98 | <artifactId>commons-configuration</artifactId> |
| 99 | <version>1.10</version> |
| 100 | </dependency> |
| 101 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 102 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 103 | <artifactId>appc-config-params-provider</artifactId> |
| 104 | <version>${project.version}</version> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <artifactId>sal-test-model</artifactId> |
| 108 | <groupId>org.opendaylight.controller</groupId> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 112 | <groupId>org.opendaylight.controller</groupId> |
| 113 | <artifactId>sal-binding-broker-impl</artifactId> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.opendaylight.controller</groupId> |
| 118 | <artifactId>sal-binding-broker-impl</artifactId> |
| 119 | <version>${odl.mdsal.version}</version> |
| 120 | <classifier>tests</classifier> |
| 121 | <type>test-jar</type> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>com.att.eelf</groupId> |
| 126 | <artifactId>eelf-core</artifactId> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>junit</groupId> |
| 130 | <artifactId>junit</artifactId> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.apache.commons</groupId> |
| 135 | <artifactId>commons-lang3</artifactId> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.json</groupId> |
| 139 | <artifactId>json</artifactId> |
| 140 | </dependency> |
| 141 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 142 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 143 | <artifactId>sql-resource-provider</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 144 | <version>${ccsdk.sli.adaptors.version}</version> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 145 | <scope>compile</scope> |
| 146 | </dependency> |
Ramya Balaji | c0eaebb | 2017-09-11 15:50:25 -0400 | [diff] [blame] | 147 | <dependency> |
| 148 | <groupId>org.powermock</groupId> |
| 149 | <artifactId>powermock-api-mockito</artifactId> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.mockito</groupId> |
| 154 | <artifactId>mockito-core</artifactId> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
Dilip kumar Pampana | acc007d | 2018-06-19 17:50:30 -0400 | [diff] [blame] | 157 | <dependency> |
| 158 | <groupId>com.jcraft</groupId> |
| 159 | <artifactId>jsch</artifactId> |
| 160 | <version>0.1.54</version> |
| 161 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 162 | </dependencies> |
| 163 | </project> |