blob: 79a0159305f941a7b138db3dc708a9de3f254fbb [file] [log] [blame]
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -04001<?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-params</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -04009 </parent>
10 <artifactId>appc-config-params-provider</artifactId>
11 <packaging>bundle</packaging>
12 <name>Config Params - Provider</name>
13
14 <dependencies>
15 <dependency>
16 <groupId>equinoxSDK381</groupId>
17 <artifactId>org.eclipse.osgi</artifactId>
18 <version>${equinox.osgi.version}</version>
19 </dependency>
20 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070021 <groupId>org.onap.ccsdk.sli.core</groupId>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040022 <artifactId>sli-provider</artifactId>
23 </dependency>
24
25 <dependency>
26 <groupId>org.openecomp.sdc.common</groupId>
27 <artifactId>openecomp-tosca-datatype</artifactId>
28 <version>${tosca.datatype.version}</version>
29 </dependency>
30
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 <dependency>
44 <groupId>com.fasterxml.jackson.dataformat</groupId>
45 <artifactId>jackson-dataformat-yaml</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.yaml</groupId>
49 <artifactId>snakeyaml</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>commons-io</groupId>
54 <artifactId>commons-io</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>com.att.eelf</groupId>
58 <artifactId>eelf-core</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <scope>test</scope>
65 </dependency>
66
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 <version>${bundle.plugin.version}</version>
75 <extensions>true</extensions>
76 <configuration>
77 <instructions>
78 <Bundle-SymbolicName>org.openecomp.sdnc.config.params</Bundle-SymbolicName>
79 <Bundle-Activator>org.openecomp.sdnc.config.params.ParamsHandlerActivator</Bundle-Activator>
80 <Export-Package>org.openecomp.sdnc.config.params,org.openecomp.sdnc.config.params.data,
81 org.openecomp.sdnc.config.params.parser,org.openecomp.sdnc.config.params.transformer,
82 org.openecomp.sdnc.config.params.transformer.tosca,org.openecomp.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
83 <Import-Package>*</Import-Package>
84 <DynamicImport-Package>*</DynamicImport-Package>
85 </instructions>
86 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
87 </configuration>
88 </plugin>
89 </plugins>
90 <pluginManagement>
91 <plugins>
92 <!--This plugin's configuration is used to store Eclipse m2e settings
93 only. It has no influence on the Maven build itself. -->
94 </plugins>
95 </pluginManagement>
96 </build>
97</project>