blob: 8831eb8125ca7ea60aac8ad916511738ad277e17 [file] [log] [blame]
Skip Wonnell5166a762017-08-15 19:57:50 -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>
6 <groupId>org.openecomp.appc</groupId>
7 <artifactId>appc-config-audit</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Skip Wonnell5166a762017-08-15 19:57:50 -05009 </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>
Patrick Brady76706002017-09-04 21:37:25 -070022 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -050023 <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.openecomp.sdnc.config.audit</Bundle-SymbolicName>
71 <Bundle-Activator>org.openecomp.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
72 <Export-Package>org.openecomp.sdnc.config.audit,org.openecomp.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>