blob: 25f7f34181e3d86257708722011173b615987286 [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>
Patrick Brady07567592017-12-13 11:09:30 -08006 <groupId>org.onap.appc</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -05007 <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>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050025 <!-- https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core -->
26 <dependency>
27 <groupId>org.xmlunit</groupId>
28 <artifactId>xmlunit-core</artifactId>
29 <version>${xmlunit-core.version}</version>
30 <scope>compile</scope>
31 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050032 <dependency>
33 <groupId>com.fasterxml.jackson.core</groupId>
34 <artifactId>jackson-databind</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>com.fasterxml.jackson.core</groupId>
38 <artifactId>jackson-annotations</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>com.fasterxml.jackson.core</groupId>
42 <artifactId>jackson-core</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>commons-io</groupId>
47 <artifactId>commons-io</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>com.att.eelf</groupId>
51 <artifactId>eelf-core</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
57 <scope>test</scope>
58 </dependency>
59
60 </dependencies>
61
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>${bundle.plugin.version}</version>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -060071 <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
72 <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
73 <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
Skip Wonnell5166a762017-08-15 19:57:50 -050074 <Import-Package>*</Import-Package>
75 <DynamicImport-Package>*</DynamicImport-Package>
76 </instructions>
77 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
78 </configuration>
79 </plugin>
80
81 </plugins>
82 <pluginManagement>
83 <plugins>
84 <!--This plugin's configuration is used to store Eclipse m2e settings
85 only. It has no influence on the Maven build itself. -->
86 <plugin>
87 <groupId>org.eclipse.m2e</groupId>
88 <artifactId>lifecycle-mapping</artifactId>
89 <version>1.0.0</version>
90 <configuration>
91 <lifecycleMappingMetadata>
92 <pluginExecutions>
93 <pluginExecution>
94 <pluginExecutionFilter>
95 <groupId>
96 com.brocade.developer
97 </groupId>
98 <artifactId>
99 providermodule-plugin
100 </artifactId>
101 <versionRange>
102 [1.2.0.100-SNAPSHOT,)
103 </versionRange>
104 <goals>
105 <goal>process</goal>
106 </goals>
107 </pluginExecutionFilter>
108 <action>
109 <ignore />
110 </action>
111 </pluginExecution>
112 </pluginExecutions>
113 </lifecycleMappingMetadata>
114 </configuration>
115 </plugin>
116 </plugins>
117 </pluginManagement>
118 </build>
119</project>