[SDNC-5] Split listeners
[sdnc/northbound.git] / dmaap-listener / pom.xml
diff --git a/dmaap-listener/pom.xml b/dmaap-listener/pom.xml
new file mode 100755 (executable)
index 0000000..a46d7ca
--- /dev/null
@@ -0,0 +1,113 @@
+<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>
+        <groupId>org.openecomp.sdnc.northbound</groupId>
+       <packaging>jar</packaging>
+       <artifactId>dmaap-listener</artifactId>
+       <version>1.1.0-SNAPSHOT</version>
+
+       <name>DMAAP Listener</name>
+       <description>DMAAP Listener</description>
+       <parent>
+               <groupId>org.openecomp.sdnc.northbound</groupId>
+               <artifactId>sdnc-northbound</artifactId>
+               <version>1.1.0-SNAPSHOT</version>
+       </parent>
+       <properties>
+               <sdc.client.version>1.1.7-SNAPSHOT</sdc.client.version>
+               <fasterxml.jackson.version>2.9.0.pr1</fasterxml.jackson.version>
+               <skip.SWM>true</skip.SWM>
+               <dmaap.listener.base>/opt/app/dmaap-listener</dmaap.listener.base>
+               <dmaap.listener.version>0.2.12</dmaap.listener.version>
+               <maven.build.timestamp.format>yyMMdd-HHmmss</maven.build.timestamp.format>
+               <build.number>${maven.build.timestamp}</build.number>
+               <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
+       </properties>
+
+       <dependencies>
+
+               <dependency>
+                       <groupId>com.att.nsa</groupId>
+                       <artifactId>dmaapClient</artifactId>
+                       <version>${dmaap.listener.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.slf4j</groupId>
+                       <artifactId>slf4j-api</artifactId>
+                       <version>1.7.10</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.slf4j</groupId>
+                       <artifactId>slf4j-log4j12</artifactId>
+                       <version>1.6.1</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+                       <version>1.2.17</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.fasterxml.jackson.core</groupId>
+                       <artifactId>jackson-core</artifactId>
+                       <version>${fasterxml.jackson.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.fasterxml.jackson.core</groupId>
+                       <artifactId>jackson-databind</artifactId>
+                       <version>${fasterxml.jackson.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>${junit.version}</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.openecomp.sdnc.core</groupId>
+                       <artifactId>dblib-provider</artifactId>
+                       <version>1.1.0-SNAPSHOT</version>
+               </dependency>
+       </dependencies>
+       <build>
+               <plugins>
+
+                       <!-- ================================================== -->
+                       <!-- Set the JDK compiler version. -->
+                       <!-- ================================================== -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <version>2.5.1</version>
+                               <inherited>true</inherited>
+                               <configuration>
+                                       <source>1.7</source>
+                                       <target>1.7</target>
+                               </configuration>
+                       </plugin>
+
+
+                       <plugin>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>create-zip</id>
+                                               <goals>
+                                                       <goal>single</goal>
+                                               </goals>
+                                               <phase>package</phase>
+                                               <configuration>
+                                                       <attach>true</attach>
+                                                       <finalName>${project.artifactId}.${project.version}</finalName>
+                                                       <attach>true</attach>
+                                                       <descriptors>
+                                                               <descriptor>src/assembly/assemble_zip.xml</descriptor>
+                                                       </descriptors>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+
+               </plugins>
+       </build>
+
+</project>