Release appc
[appc.git] / appc-event-listener / appc-event-listener-bundle / pom.xml
index c2d4223..696e403 100644 (file)
@@ -1,11 +1,33 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ============LICENSE_START=======================================================
+  ONAP : APPC
+  ================================================================================
+  Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
+  Copyright (C) 2017 Amdocs
+  ================================================================================
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+       http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  ============LICENSE_END=========================================================
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
-               <groupId>org.openecomp.appc</groupId>
-               <artifactId>appc-event-listener</artifactId>
-               <version>1.2.0-SNAPSHOT</version>
+               <groupId>org.onap.appc.parent</groupId>
+               <artifactId>binding-parent</artifactId>
+               <version>2.6.0</version>
+                <relativePath />
        </parent>
+        <groupId>org.onap.appc</groupId>
 
        <artifactId>appc-event-listener-bundle</artifactId>
        <packaging>bundle</packaging>
        <dependencies>
 <!--
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
+                       <groupId>org.onap.appc</groupId>
                        <artifactId>appc-rest-bundle</artifactId>
                        <version>${project.version}</version>
                </dependency>
 -->
+                <dependency>
+                     <groupId>ch.qos.logback</groupId>
+                     <artifactId>logback-classic</artifactId>
+                    <version>${logback.version}</version>
+                </dependency>
                <dependency>
                        <groupId>com.att.eelf</groupId>
                        <artifactId>eelf-core</artifactId>
-                       </dependency>
+                       <exclusions>
+                            <exclusion>
+                                 <groupId>ch.qos.logback</groupId>
+                                 <artifactId>logback-classic</artifactId>
+                            </exclusion>
+                        </exclusions>
+               </dependency>
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
-                       <artifactId>appc-common</artifactId>
+                       <groupId>org.onap.appc</groupId>
+                       <artifactId>appc-common-bundle</artifactId>
                        <version>${project.version}</version>
                </dependency>
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
+                       <groupId>org.onap.appc</groupId>
                        <artifactId>appc-dmaap-adapter-bundle</artifactId>
                        <version>${project.version}</version>
             <scope>provided</scope>
                </dependency>
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
+                       <groupId>org.onap.appc</groupId>
                        <artifactId>appc-message-adapter-api</artifactId>
                        <version>${project.version}</version>
             <scope>provided</scope>
                </dependency>
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
+                       <groupId>org.onap.appc</groupId>
                        <artifactId>appc-message-adapter-factory</artifactId>
                        <version>${project.version}</version>
             <scope>provided</scope>
                </dependency>
 <!--
                <dependency>
-                       <groupId>org.openecomp.appc</groupId>
+                       <groupId>org.onap.appc</groupId>
                        <artifactId>appc-rest-model</artifactId>
                        <version>${project.version}</version>
                </dependency>
@@ -57,7 +90,7 @@
                <dependency>
                        <groupId>org.apache.httpcomponents</groupId>
                        <artifactId>httpclient</artifactId>
-                       <version>4.5.1</version>
+                       <version>4.5.3</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.httpcomponents</groupId>
                        <groupId>equinoxSDK381</groupId>
                        <artifactId>org.eclipse.osgi</artifactId>
                </dependency>
-
+                <dependency>
+                  <groupId>commons-codec</groupId>
+                  <artifactId>commons-codec</artifactId>
+                </dependency>
                <dependency>
                        <groupId>com.fasterxml.jackson.core</groupId>
                        <artifactId>jackson-databind</artifactId>
                        <artifactId>junit</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-core</artifactId>
+                       <scope>test</scope>
+               </dependency>
        </dependencies>
 
 
                                <extensions>true</extensions>
                                <configuration>
                                        <instructions>
-                                               <Bundle-SymbolicName>org.openecomp.appc.listener</Bundle-SymbolicName>
-                                               <Bundle-Activator>org.openecomp.appc.listener.AppcEventListenerActivator</Bundle-Activator>
-                                               <Export-Package>org.openecomp.appc.listener</Export-Package>
-                                               <Import-Package>org.openecomp.appc.adapter.message.*,org.openecomp.appc.adapter.factory.*,org.openecomp.appc.adapter.messaging.*
-                                                       org.openecomp.appc.exceptions, org.openecomp.appc.util,
+                                               <Bundle-SymbolicName>org.onap.appc.listener</Bundle-SymbolicName>
+                                               <Bundle-Activator>org.onap.appc.listener.AppcEventListenerActivator</Bundle-Activator>
+                                               <Export-Package>org.onap.appc.listener</Export-Package>
+                                               <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*
+                                                       org.onap.appc.exceptions, org.onap.appc.util,
                                                        com.att.eelf.configuration, com.att.eelf.i18n,
                                                        *;resolution:=optional
                                                </Import-Package>
                                                <Embed-Dependency>
-                                                       httpclient,httpcore,jasypt,commons-lang,commons-lang3,appc-common,
+                                                       httpclient,httpcore,jasypt,commons-lang,commons-lang3,commons-codec,appc-common-bundle,
                                                        logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
                                                </Embed-Dependency>
                                                <Embed-Transitive>true</Embed-Transitive>
 
                </plugins>
        </build>
+       <version>1.6.2</version>
 </project>