blob: 3bd0ae9d2735f7ccf321a3aa5552cf34582f717b [file] [log] [blame]
Skip Wonnellcf4b15a2017-08-15 21:18:04 -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.plugins</groupId>
7 <artifactId>dg-loader</artifactId>
8 <version>1.1.0-SNAPSHOT</version>
9 </parent>
10 <artifactId>dg-loader-provider</artifactId>
11 <packaging>bundle</packaging>
12 <name>Directed Graph Loader - Provider</name>
13 <url>http://maven.apache.org</url>
14
15 <dependencies>
16 <dependency>
17 <groupId>org.openecomp.sdnc.core</groupId>
18 <artifactId>sli-provider</artifactId>
19 <version>${sdnctl.sli.version}</version>
20 <scope>compile</scope>
21 </dependency>
22 <dependency>
23 <groupId>commons-io</groupId>
24 <artifactId>commons-io</artifactId>
25 <version>${common.io.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>com.att.eelf</groupId>
29 <artifactId>eelf-core</artifactId>
30 <version>${eelf.version}</version>
31 </dependency>
32
33 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
36 <scope>test</scope>
37 </dependency>
38
39 </dependencies>
40
41 <build>
42 <plugins>
43
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${bundle.plugin.version}</version>
48 <extensions>true</extensions>
49 <configuration>
50 <instructions>
51 <Bundle-SymbolicName>org.openecomp.sdnc.dg.loader</Bundle-SymbolicName>
52 <Bundle-Activator>org.openecomp.sdnc.dg.loader.DGLoaderActivator</Bundle-Activator>
53 <Export-Package>org.openecomp.sdnc.dg.loader</Export-Package>
54 <Import-Package>*</Import-Package>
55 <DynamicImport-Package>*</DynamicImport-Package>
56 </instructions>
57 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
58 </configuration>
59 </plugin>
60
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <version>2.4.1</version>
65 <configuration>
66 <descriptorRefs>
67 <descriptorRef>jar-with-dependencies</descriptorRef>
68 </descriptorRefs>
69 <finalName>dg-loader</finalName>
70 <archive>
71 <manifest>
72 <mainClass>org.openecomp.sdnc.dg.loader.DGXMLLoadNActivate</mainClass>
73 </manifest>
74 </archive>
75 <attach>false</attach>
76 </configuration>
77 <executions>
78 <execution>
79 <id>make-assembly</id>
80 <phase>package</phase>
81 <goals>
82 <goal>single</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87
88 </plugins>
89 <pluginManagement>
90 <plugins>
91 <!--This plugin's configuration is used to store Eclipse m2e settings
92 only. It has no influence on the Maven build itself. -->
93 <plugin>
94 <groupId>org.eclipse.m2e</groupId>
95 <artifactId>lifecycle-mapping</artifactId>
96 <version>1.0.0</version>
97 <configuration>
98 <lifecycleMappingMetadata>
99 <pluginExecutions>
100 <pluginExecution>
101 <pluginExecutionFilter>
102 <groupId>
103 com.brocade.developer
104 </groupId>
105 <artifactId>
106 providermodule-plugin
107 </artifactId>
108 <versionRange>
109 [1.2.0.100-SNAPSHOT,)
110 </versionRange>
111 <goals>
112 <goal>process</goal>
113 </goals>
114 </pluginExecutionFilter>
115 <action>
116 <ignore />
117 </action>
118 </pluginExecution>
119 </pluginExecutions>
120 </lifecycleMappingMetadata>
121 </configuration>
122 </plugin>
123 </plugins>
124 </pluginManagement>
125 </build>
126</project>