Update bundle names from openecomp to onap
[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         <dependency>
26             <groupId>xmlunit</groupId>
27             <artifactId>xmlunit</artifactId>
28             <version>${xmlunit.version}</version>
29             <scope>compile</scope>
30         </dependency>
31         <dependency>
32             <groupId>com.fasterxml.jackson.core</groupId>
33             <artifactId>jackson-databind</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>com.fasterxml.jackson.core</groupId>
37             <artifactId>jackson-annotations</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>com.fasterxml.jackson.core</groupId>
41             <artifactId>jackson-core</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>commons-io</groupId>
46             <artifactId>commons-io</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>com.att.eelf</groupId>
50             <artifactId>eelf-core</artifactId>
51         </dependency>
52
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56             <scope>test</scope>
57         </dependency>
58
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <version>${bundle.plugin.version}</version>
67                 <extensions>true</extensions>
68                 <configuration>
69                     <instructions>
70                         <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
71                         <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
72                         <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
73                         <Import-Package>*</Import-Package>
74                         <DynamicImport-Package>*</DynamicImport-Package>
75                     </instructions>
76                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
77                 </configuration>
78             </plugin>
79
80         </plugins>
81         <pluginManagement>
82             <plugins>
83                 <!--This plugin's configuration is used to store Eclipse m2e settings
84                     only. It has no influence on the Maven build itself. -->
85                 <plugin>
86                     <groupId>org.eclipse.m2e</groupId>
87                     <artifactId>lifecycle-mapping</artifactId>
88                     <version>1.0.0</version>
89                     <configuration>
90                         <lifecycleMappingMetadata>
91                             <pluginExecutions>
92                                 <pluginExecution>
93                                     <pluginExecutionFilter>
94                                         <groupId>
95                                             com.brocade.developer
96                                         </groupId>
97                                         <artifactId>
98                                             providermodule-plugin
99                                         </artifactId>
100                                         <versionRange>
101                                             [1.2.0.100-SNAPSHOT,)
102                                         </versionRange>
103                                         <goals>
104                                             <goal>process</goal>
105                                         </goals>
106                                     </pluginExecutionFilter>
107                                     <action>
108                                         <ignore />
109                                     </action>
110                                 </pluginExecution>
111                             </pluginExecutions>
112                         </lifecycleMappingMetadata>
113                     </configuration>
114                 </plugin>
115             </plugins>
116         </pluginManagement>
117     </build>
118 </project>