Updates to config audit bundle
[appc.git] / appc-config / appc-config-audit / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.onap.appc</groupId>
7         <artifactId>appc-config-audit</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>appc-config-audit-provider</artifactId>
11     <packaging>bundle</packaging>
12     <name>Config Audit - Provider</name>
13     <url>http://maven.apache.org</url>
14
15     <dependencies>
16         <dependency>
17             <groupId>equinoxSDK381</groupId>
18             <artifactId>org.eclipse.osgi</artifactId>
19             <version>${equinox.osgi.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.onap.ccsdk.sli.core</groupId>
23             <artifactId>sli-provider</artifactId>
24         </dependency>
25         <!-- https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core -->
26     <dependency>
27         <groupId>org.xmlunit</groupId>
28         <artifactId>xmlunit-core</artifactId>
29         <version>${xmlunit-core.version}</version>
30         <scope>compile</scope>
31     </dependency>
32         <dependency>
33             <groupId>com.fasterxml.jackson.core</groupId>
34             <artifactId>jackson-databind</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>com.fasterxml.jackson.core</groupId>
38             <artifactId>jackson-annotations</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.fasterxml.jackson.core</groupId>
42             <artifactId>jackson-core</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>commons-io</groupId>
47             <artifactId>commons-io</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.att.eelf</groupId>
51             <artifactId>eelf-core</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>junit</groupId>
56             <artifactId>junit</artifactId>
57             <scope>test</scope>
58         </dependency>
59
60     </dependencies>
61
62     <build>
63         <plugins>
64             <plugin>
65                 <groupId>org.apache.felix</groupId>
66                 <artifactId>maven-bundle-plugin</artifactId>
67                 <version>${bundle.plugin.version}</version>
68                 <extensions>true</extensions>
69                 <configuration>
70                     <instructions>
71                         <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
72                         <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
73                         <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
74                         <Import-Package>*</Import-Package>
75                         <DynamicImport-Package>*</DynamicImport-Package>
76                     </instructions>
77                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
78                 </configuration>
79             </plugin>
80
81         </plugins>
82         <pluginManagement>
83             <plugins>
84                 <!--This plugin's configuration is used to store Eclipse m2e settings
85                     only. It has no influence on the Maven build itself. -->
86                 <plugin>
87                     <groupId>org.eclipse.m2e</groupId>
88                     <artifactId>lifecycle-mapping</artifactId>
89                     <version>1.0.0</version>
90                     <configuration>
91                         <lifecycleMappingMetadata>
92                             <pluginExecutions>
93                                 <pluginExecution>
94                                     <pluginExecutionFilter>
95                                         <groupId>
96                                             com.brocade.developer
97                                         </groupId>
98                                         <artifactId>
99                                             providermodule-plugin
100                                         </artifactId>
101                                         <versionRange>
102                                             [1.2.0.100-SNAPSHOT,)
103                                         </versionRange>
104                                         <goals>
105                                             <goal>process</goal>
106                                         </goals>
107                                     </pluginExecutionFilter>
108                                     <action>
109                                         <ignore />
110                                     </action>
111                                 </pluginExecution>
112                             </pluginExecutions>
113                         </lifecycleMappingMetadata>
114                     </configuration>
115                 </plugin>
116             </plugins>
117         </pluginManagement>
118     </build>
119 </project>