blob: 906caf29d0ec1671b7b9a19f575efd11193a6acd [file] [log] [blame]
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05001<?xml version="1.0" encoding="UTF-8"?>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -04002<!--
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 Wonnell1ec4bf92017-08-15 20:42:44 -050013
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040014 http://www.apache.org/licenses/LICENSE-2.0
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050015
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040016 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 Wonnell1ec4bf92017-08-15 20:42:44 -050021
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040022 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 Wonnell1ec4bf92017-08-15 20:42:44 -050028
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040029 <modelVersion>4.0.0</modelVersion>
30 <parent>
31 <groupId>org.openecomp.appc</groupId>
32 <artifactId>appc-config-adaptor</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080033 <version>1.3.0-SNAPSHOT</version>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040034 </parent>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050035
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040036 <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 Brady76706002017-09-04 21:37:25 -070053 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040054 <artifactId>sli-common</artifactId>
55 <scope>compile</scope>
56 </dependency>
57 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070058 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040059 <artifactId>sli-provider</artifactId>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.powermock</groupId>
64 <artifactId>powermock-api-mockito</artifactId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050065 <scope>test</scope>
66 </dependency>
67 <dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040068 <groupId>org.mockito</groupId>
69 <artifactId>mockito-core</artifactId>
70 <scope>test</scope>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050071 </dependency>
72
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040073 <!--
74 this comes from brocade parent (app-cntrl) , not sure about opendaylight (onap)
75 value was <slf4j.version>1.7.2</slf4j.version>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050076
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040077 <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 Wonnell1ec4bf92017-08-15 20:42:44 -050088
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040089 <dependency>
90 <groupId>com.att.eelf</groupId>
91 <artifactId>eelf-core</artifactId>
92 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050093
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040094 <dependency>
95 <groupId>com.jcraft</groupId>
96 <artifactId>jsch</artifactId>
97 <version>0.1.52</version>
98 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050099
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400100 <dependency>
101 <groupId>jdom</groupId>
102 <artifactId>jdom</artifactId>
103 <version>1.1</version>
104 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500105
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400106 <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 Wonnell1ec4bf92017-08-15 20:42:44 -0500125
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400126 <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 Wonnell1ec4bf92017-08-15 20:42:44 -0500182</project>