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 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | 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] | 28 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 32 | <artifactId>appc-config-adaptor</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 33 | <version>1.3.0-SNAPSHOT</version> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 34 | </parent> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 35 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 36 | <artifactId>appc-config-adaptor-provider</artifactId> |
| 37 | <packaging>bundle</packaging> |
| 38 | <name>APPC Config Component Adaptor - Provider</name> |
| 39 | <url>http://maven.apache.org</url> |
| 40 | |
| 41 | <properties> |
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 43 | <licenseDir>${project.parent.parent.parent.basedir}</licenseDir> |
| 44 | </properties> |
| 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 53 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 54 | <artifactId>sli-common</artifactId> |
| 55 | <scope>compile</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 58 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 59 | <artifactId>sli-provider</artifactId> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.powermock</groupId> |
| 64 | <artifactId>powermock-api-mockito</artifactId> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 68 | <groupId>org.mockito</groupId> |
| 69 | <artifactId>mockito-core</artifactId> |
| 70 | <scope>test</scope> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 71 | </dependency> |
| 72 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>com.att.eelf</groupId> |
| 75 | <artifactId>eelf-core</artifactId> |
| 76 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 77 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>com.jcraft</groupId> |
| 80 | <artifactId>jsch</artifactId> |
| 81 | <version>0.1.52</version> |
| 82 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 83 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 84 | <dependency> |
| 85 | <groupId>jdom</groupId> |
| 86 | <artifactId>jdom</artifactId> |
| 87 | <version>1.1</version> |
| 88 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 89 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 90 | <dependency> |
| 91 | <groupId>xerces</groupId> |
| 92 | <artifactId>xerces</artifactId> |
| 93 | <version>2.4.0</version> |
| 94 | <scope>provided</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>com.sun.jersey</groupId> |
| 98 | <artifactId>jersey-client</artifactId> |
| 99 | <version>1.17</version> |
| 100 | <scope>provided</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.jasypt</groupId> |
| 104 | <artifactId>jasypt</artifactId> |
| 105 | <version>1.9.2</version> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
Tomek Kaminski | 31b7112 | 2018-01-26 13:49:50 +0100 | [diff] [blame] | 108 | <dependency> |
| 109 | <groupId>commons-io</groupId> |
| 110 | <artifactId>commons-io</artifactId> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
Tomek Kaminski | 8d0eb7f | 2018-02-22 16:51:03 +0100 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>org.onap.appc</groupId> |
| 115 | <artifactId>appc-common</artifactId> |
| 116 | <version>${project.version}</version> |
| 117 | </dependency> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 118 | </dependencies> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 119 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 120 | <build> |
| 121 | <plugins> |
| 122 | <plugin> |
| 123 | <groupId>org.apache.felix</groupId> |
| 124 | <artifactId>maven-bundle-plugin</artifactId> |
| 125 | <extensions>true</extensions> |
| 126 | <configuration> |
| 127 | <instructions> |
| 128 | <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 129 | <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator> |
| 130 | <Export-Package>org.onap.appc.adaptor</Export-Package> |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 131 | <Import-Package>*</Import-Package> |
| 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> |