7a614de0e3505e254fff8b61b13a2d8fc9f07859
[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.openecomp.appc</groupId>
7         <artifactId>appc-config-generator</artifactId>
8         <version>1.1.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.openecomp.sdnc.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
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <version>${bundle.plugin.version}</version>
76                 <extensions>true</extensions>
77                 <configuration>
78                     <instructions>
79                         <Bundle-SymbolicName>org.openecomp.sdnc.config.generator</Bundle-SymbolicName>
80                         <Bundle-Activator>org.openecomp.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
81                         <Export-Package>org.openecomp.sdnc.config.generator,org.openecomp.sdnc.config.generator.compare,org.openecomp.sdnc.config.generator.convert,
82                             org.openecomp.sdnc.config.generator.merge,org.openecomp.sdnc.config.generator.pattern,org.openecomp.sdnc.config.generator.tool,
83                             org.openecomp.sdnc.config.generator.transform</Export-Package>
84                         <Import-Package>*</Import-Package>
85                         <DynamicImport-Package>*</DynamicImport-Package>
86                     </instructions>
87                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
88                 </configuration>
89             </plugin>
90
91         </plugins>
92         <pluginManagement>
93             <plugins>
94                 <!--This plugin's configuration is used to store Eclipse m2e settings 
95                     only. It has no influence on the Maven build itself. -->
96                 <plugin>
97                     <groupId>org.eclipse.m2e</groupId>
98                     <artifactId>lifecycle-mapping</artifactId>
99                     <version>1.0.0</version>
100                     <configuration>
101                         <lifecycleMappingMetadata>
102                             <pluginExecutions>
103                                 <pluginExecution>
104                                     <pluginExecutionFilter>
105                                         <groupId>
106                                             com.brocade.developer
107                                         </groupId>
108                                         <artifactId>
109                                             providermodule-plugin
110                                         </artifactId>
111                                         <versionRange>
112                                             [1.2.0.100-SNAPSHOT,)
113                                         </versionRange>
114                                         <goals>
115                                             <goal>process</goal>
116                                         </goals>
117                                     </pluginExecutionFilter>
118                                     <action>
119                                         <ignore />
120                                     </action>
121                                 </pluginExecution>
122                             </pluginExecutions>
123                         </lifecycleMappingMetadata>
124                     </configuration>
125                 </plugin>
126             </plugins>
127         </pluginManagement>
128     </build>
129 </project>