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> |
| 31 | <groupId>org.openecomp.appc</groupId> |
| 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 | <!-- |
| 74 | this comes from brocade parent (app-cntrl) , not sure about opendaylight (onap) |
| 75 | value was <slf4j.version>1.7.2</slf4j.version> |
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>org.slf4j</groupId> |
| 79 | <artifactId>slf4j-api</artifactId> |
| 80 | <version>${slf4j.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.slf4j</groupId> |
| 84 | <artifactId>jcl-over-slf4j</artifactId> |
| 85 | <version>${slf4j.version}</version> |
| 86 | </dependency> |
| 87 | --> |
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>com.att.eelf</groupId> |
| 91 | <artifactId>eelf-core</artifactId> |
| 92 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 93 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 94 | <dependency> |
| 95 | <groupId>com.jcraft</groupId> |
| 96 | <artifactId>jsch</artifactId> |
| 97 | <version>0.1.52</version> |
| 98 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 99 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 100 | <dependency> |
| 101 | <groupId>jdom</groupId> |
| 102 | <artifactId>jdom</artifactId> |
| 103 | <version>1.1</version> |
| 104 | </dependency> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 105 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 106 | <dependency> |
| 107 | <groupId>xerces</groupId> |
| 108 | <artifactId>xerces</artifactId> |
| 109 | <version>2.4.0</version> |
| 110 | <scope>provided</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>com.sun.jersey</groupId> |
| 114 | <artifactId>jersey-client</artifactId> |
| 115 | <version>1.17</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.jasypt</groupId> |
| 120 | <artifactId>jasypt</artifactId> |
| 121 | <version>1.9.2</version> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | </dependencies> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 125 | |
Chaturvedi, Anand (ac204h) | 50fdfca | 2017-09-01 15:35:26 -0400 | [diff] [blame] | 126 | <build> |
| 127 | <plugins> |
| 128 | <plugin> |
| 129 | <groupId>org.apache.felix</groupId> |
| 130 | <artifactId>maven-bundle-plugin</artifactId> |
| 131 | <extensions>true</extensions> |
| 132 | <configuration> |
| 133 | <instructions> |
| 134 | <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName> |
| 135 | <Bundle-Activator>org.openecomp.appc.ccadaptor.CCAActivator</Bundle-Activator> |
| 136 | <Export-Package>org.openecomp.appc.adaptor</Export-Package> |
| 137 | <Import-Package>*</Import-Package> |
| 138 | <DynamicImport-Package>*</DynamicImport-Package> |
| 139 | </instructions> |
| 140 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 141 | </configuration> |
| 142 | </plugin> |
| 143 | |
| 144 | </plugins> |
| 145 | <pluginManagement> |
| 146 | <plugins> |
| 147 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 148 | only. It has no influence on the Maven build itself. --> |
| 149 | <plugin> |
| 150 | <groupId>org.eclipse.m2e</groupId> |
| 151 | <artifactId>lifecycle-mapping</artifactId> |
| 152 | <version>1.0.0</version> |
| 153 | <configuration> |
| 154 | <lifecycleMappingMetadata> |
| 155 | <pluginExecutions> |
| 156 | <pluginExecution> |
| 157 | <pluginExecutionFilter> |
| 158 | <groupId> |
| 159 | com.brocade.developer |
| 160 | </groupId> |
| 161 | <artifactId> |
| 162 | providermodule-plugin |
| 163 | </artifactId> |
| 164 | <versionRange> |
| 165 | [1.2.0.100-SNAPSHOT,) |
| 166 | </versionRange> |
| 167 | <goals> |
| 168 | <goal>process</goal> |
| 169 | </goals> |
| 170 | </pluginExecutionFilter> |
| 171 | <action> |
| 172 | <ignore/> |
| 173 | </action> |
| 174 | </pluginExecution> |
| 175 | </pluginExecutions> |
| 176 | </lifecycleMappingMetadata> |
| 177 | </configuration> |
| 178 | </plugin> |
| 179 | </plugins> |
| 180 | </pluginManagement> |
| 181 | </build> |
Skip Wonnell | 1ec4bf9 | 2017-08-15 20:42:44 -0500 | [diff] [blame] | 182 | </project> |