Update bundle names from openecomp to onap
[appc.git] / appc-config / appc-config-generator / 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-generator</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>appc-config-generator-provider</artifactId>
11     <packaging>bundle</packaging>
12     <name>Config Generator - Provider</name>
13     <url>http://maven.apache.org</url>
14
15
16     <dependencies>
17         <dependency>
18             <groupId>equinoxSDK381</groupId>
19             <artifactId>org.eclipse.osgi</artifactId>
20             <version>${equinox.osgi.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.onap.ccsdk.sli.core</groupId>
24             <artifactId>sli-provider</artifactId>
25         </dependency>
26
27         <dependency>
28             <groupId>com.fasterxml.jackson.core</groupId>
29             <artifactId>jackson-databind</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>com.fasterxml.jackson.core</groupId>
33             <artifactId>jackson-annotations</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>com.fasterxml.jackson.core</groupId>
37             <artifactId>jackson-core</artifactId>
38         </dependency>
39         <!-- >dependency>
40             <groupId>com.fasterxml.jackson.dataformat</groupId>
41             <artifactId>jackson-dataformat-properties</artifactId>
42         </dependency-->
43
44         <dependency>
45             <groupId>org.codehaus.jettison</groupId>
46             <artifactId>jettison</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>commons-io</groupId>
50             <artifactId>commons-io</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.velocity</groupId>
54             <artifactId>velocity</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>com.att.eelf</groupId>
59             <artifactId>eelf-core</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68                 <groupId>org.powermock</groupId>
69                 <artifactId>powermock-api-mockito</artifactId>
70                 <version>1.6.4</version>
71                 <scope>test</scope>
72         </dependency>
73             <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76             <scope>test</scope>
77         </dependency>
78
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.felix</groupId>
85                 <artifactId>maven-bundle-plugin</artifactId>
86                 <version>${bundle.plugin.version}</version>
87                 <extensions>true</extensions>
88                 <configuration>
89                     <instructions>
90                         <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName>
91                         <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
92                         <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert,
93                             org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool,
94                             org.onap.sdnc.config.generator.transform</Export-Package>
95                         <Import-Package>*</Import-Package>
96                         <DynamicImport-Package>*</DynamicImport-Package>
97                     </instructions>
98                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
99                 </configuration>
100             </plugin>
101
102         </plugins>
103         <pluginManagement>
104             <plugins>
105                 <!--This plugin's configuration is used to store Eclipse m2e settings 
106                     only. It has no influence on the Maven build itself. -->
107                 <plugin>
108                     <groupId>org.eclipse.m2e</groupId>
109                     <artifactId>lifecycle-mapping</artifactId>
110                     <version>1.0.0</version>
111                     <configuration>
112                         <lifecycleMappingMetadata>
113                             <pluginExecutions>
114                                 <pluginExecution>
115                                     <pluginExecutionFilter>
116                                         <groupId>
117                                             com.brocade.developer
118                                         </groupId>
119                                         <artifactId>
120                                             providermodule-plugin
121                                         </artifactId>
122                                         <versionRange>
123                                             [1.2.0.100-SNAPSHOT,)
124                                         </versionRange>
125                                         <goals>
126                                             <goal>process</goal>
127                                         </goals>
128                                     </pluginExecutionFilter>
129                                     <action>
130                                         <ignore />
131                                     </action>
132                                 </pluginExecution>
133                             </pluginExecutions>
134                         </lifecycleMappingMetadata>
135                     </configuration>
136                 </plugin>
137             </plugins>
138         </pluginManagement>
139     </build>
140 </project>