ac75a008de3c42180fc799d581a2905f8a8eb0d9
[demo.git] / vnfs / honeycomb_plugin / stream-count / stream-count-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4     Modifications copyright © 2019 AT&T Intellectual Property
5 -->
6
7 <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">
8
9   <!--parent>
10     <groupId>org.onap.demo.vnf</groupId>
11     <artifactId>hc-onap</artifactId>
12     <version>1.4.0-SNAPSHOT</version>
13     <relativePath>../parent-pom/pom.xml</relativePath>
14   </parent-->
15
16   <parent>
17     <groupId>io.fd.honeycomb.common</groupId>
18     <artifactId>minimal-distribution-parent</artifactId>
19     <version>1.18.10</version>
20   </parent>
21
22   <modelVersion>4.0.0</modelVersion>
23   <groupId>org.onap.vnf.vfw</groupId>
24   <artifactId>sample-distribution</artifactId>
25   <version>1.4.0-SNAPSHOT</version>
26
27   <!--modelVersion>4.0.0</modelVersion>
28   <artifactId>sample-distribution</artifactId-->
29
30   <properties>
31     <exec.parameters>-Xms256m -Xmx256m</exec.parameters>
32     <main.class>io.fd.honeycomb.infra.distro.Main</main.class>
33     <interfaces.mapping.version>1.18.10</interfaces.mapping.version>
34     <honeycomb.min.distro.version>1.18.10</honeycomb.min.distro.version>
35     <!--
36        Defines list of specific modules provided by the distribution
37        (adds them to base modules like NetconfModule and RestconfModule).
38
39        Module configuration is placed in 'modules' subdir of the target distro folder.
40        Modules can be disabled by commenting them out in the pom.xml
41        or modules configuration file.
42      -->
43     <distribution.modules>
44       org.onap.vnf.vfw.Module
45     </distribution.modules>
46   </properties>
47
48   <build>
49     <plugins>
50       <plugin>
51         <artifactId>maven-compiler-plugin</artifactId>
52       </plugin>
53       <plugin>
54         <groupId>org.codehaus.gmaven</groupId>
55         <artifactId>groovy-maven-plugin</artifactId>
56       </plugin>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-jar-plugin</artifactId>
60       </plugin>
61       <plugin>
62         <groupId>org.apache.maven.plugins</groupId>
63         <artifactId>maven-dependency-plugin</artifactId>
64       </plugin>
65       <plugin>
66         <artifactId>maven-assembly-plugin</artifactId>
67       </plugin>
68       <plugin>
69         <groupId>org.apache.maven.plugins</groupId>
70         <artifactId>maven-deploy-plugin</artifactId>
71         <configuration>
72           <skip>false</skip>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-install-plugin</artifactId>
78         <configuration>
79           <skip>false</skip>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84
85   <dependencies>
86     <!-- Dependency on sample plugin -->
87     <dependency>
88       <groupId>org.onap.vnf.vfw</groupId>
89       <artifactId>stream-count-impl</artifactId>
90       <version>${interfaces.mapping.version}</version>
91     </dependency>
92     <!-- Dependency on distribution base -->
93     <dependency>
94       <groupId>io.fd.honeycomb</groupId>
95       <artifactId>minimal-distribution</artifactId>
96       <version>${honeycomb.min.distro.version}</version>
97     </dependency>
98
99   </dependencies>
100 </project>