blob: af8cdbb5c1b58c7742e420304c3fc375e9be42db [file] [log] [blame]
Skip Wonnelldbf27a42017-08-15 18:07:13 -05001<?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>
Patrick Brady07567592017-12-13 11:09:30 -08006 <groupId>org.onap.appc</groupId>
Skip Wonnelldbf27a42017-08-15 18:07:13 -05007 <artifactId>appc-config-generator</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Skip Wonnelldbf27a42017-08-15 18:07:13 -05009 </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>
Patrick Brady76706002017-09-04 21:37:25 -070023 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050024 <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>
Chaturvedi, Anand (ac204h)48f77d62017-08-31 19:07:53 -040067 <dependency>
68 <groupId>org.powermock</groupId>
69 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070070 <version>1.6.4</version>
Chaturvedi, Anand (ac204h)48f77d62017-08-31 19:07:53 -040071 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.mockito</groupId>
75 <artifactId>mockito-core</artifactId>
76 <scope>test</scope>
77 </dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050078
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>
Takamune Cho8491cc32017-12-19 10:48:02 -060090 <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>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050095 <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>