Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | cd5f4f6 | 2018-06-13 14:03:54 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [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 |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 13 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 15 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 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. |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 21 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [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"> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 27 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 31 | <artifactId>appc-config-adaptor</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 32 | <version>1.4.0-SNAPSHOT</version> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 33 | </parent> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 34 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 35 | <artifactId>appc-config-adaptor-provider</artifactId> |
| 36 | <packaging>bundle</packaging> |
| 37 | <name>APPC Config Component Adaptor - Provider</name> |
| 38 | <url>http://maven.apache.org</url> |
| 39 | |
| 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | <licenseDir>${project.parent.parent.parent.basedir}</licenseDir> |
| 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 52 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 53 | <artifactId>sli-common</artifactId> |
| 54 | <scope>compile</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 57 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 58 | <artifactId>sli-provider</artifactId> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.powermock</groupId> |
| 63 | <artifactId>powermock-api-mockito</artifactId> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 67 | <groupId>org.mockito</groupId> |
| 68 | <artifactId>mockito-core</artifactId> |
| 69 | <scope>test</scope> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 70 | </dependency> |
| 71 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 72 | <dependency> |
| 73 | <groupId>com.att.eelf</groupId> |
| 74 | <artifactId>eelf-core</artifactId> |
| 75 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 76 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 77 | <dependency> |
| 78 | <groupId>com.jcraft</groupId> |
| 79 | <artifactId>jsch</artifactId> |
| 80 | <version>0.1.52</version> |
| 81 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 82 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>jdom</groupId> |
| 85 | <artifactId>jdom</artifactId> |
| 86 | <version>1.1</version> |
| 87 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 88 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>xerces</groupId> |
| 91 | <artifactId>xerces</artifactId> |
| 92 | <version>2.4.0</version> |
| 93 | <scope>provided</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>com.sun.jersey</groupId> |
| 97 | <artifactId>jersey-client</artifactId> |
| 98 | <version>1.17</version> |
| 99 | <scope>provided</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.jasypt</groupId> |
| 103 | <artifactId>jasypt</artifactId> |
| 104 | <version>1.9.2</version> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
Tomek Kaminski | 31b7112 | 2018-01-26 13:49:50 +0100 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>commons-io</groupId> |
| 109 | <artifactId>commons-io</artifactId> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
Tomek Kaminski | 8d0eb7f | 2018-02-22 16:51:03 +0100 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>org.onap.appc</groupId> |
| 114 | <artifactId>appc-common</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | </dependency> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 117 | </dependencies> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 118 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 119 | <build> |
| 120 | <plugins> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.felix</groupId> |
| 123 | <artifactId>maven-bundle-plugin</artifactId> |
| 124 | <extensions>true</extensions> |
| 125 | <configuration> |
| 126 | <instructions> |
| 127 | <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 128 | <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator> |
| 129 | <Export-Package>org.onap.appc.adaptor</Export-Package> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 130 | <Import-Package>*;resolution:=optional</Import-Package> |
| 131 | <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 132 | <DynamicImport-Package>*</DynamicImport-Package> |
| 133 | </instructions> |
| 134 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 135 | </configuration> |
| 136 | </plugin> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 137 | </plugins> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 138 | </build> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 139 | </project> |