blob: 873613507178d50d9b08fd5c03b0ea5afe139759 [file] [log] [blame]
Skip Wonnellcf4b15a2017-08-15 21:18:04 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell574417b2017-08-28 22:02:54 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050025<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Hao Kuang58a71962017-09-01 14:11:57 +000026 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050027 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <groupId>org.openecomp.appc.plugins</groupId>
30 <artifactId>dg-loader</artifactId>
31 <version>1.1.0-SNAPSHOT</version>
32 </parent>
33 <artifactId>dg-loader-provider</artifactId>
34 <packaging>bundle</packaging>
Skip Wonnell574417b2017-08-28 22:02:54 -050035 <name>APPC Directed Graph Loader - Provider</name>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050036
37 <dependencies>
38 <dependency>
39 <groupId>org.openecomp.sdnc.core</groupId>
40 <artifactId>sli-provider</artifactId>
41 <version>${sdnctl.sli.version}</version>
42 <scope>compile</scope>
Hao Kuang58a71962017-09-01 14:11:57 +000043 <exclusions>
44 <exclusion>
45 <groupId>org.slf4j</groupId>
46 <artifactId>slf4j-api</artifactId>
47 </exclusion>
48 <exclusion>
49 <groupId>org.slf4j</groupId>
50 <artifactId>jcl-over-slf4j</artifactId>
51 </exclusion>
52 </exclusions>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050053 </dependency>
54 <dependency>
55 <groupId>commons-io</groupId>
56 <artifactId>commons-io</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050057 </dependency>
58 <dependency>
59 <groupId>com.att.eelf</groupId>
60 <artifactId>eelf-core</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050061 </dependency>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050062 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
Hao Kuang58a71962017-09-01 14:11:57 +000067 <dependency>
68 <groupId>org.slf4j</groupId>
69 <artifactId>slf4j-api</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.slf4j</groupId>
73 <artifactId>jcl-over-slf4j</artifactId>
74 </dependency>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050075 </dependencies>
76
77 <build>
78 <plugins>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050079 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <version>${bundle.plugin.version}</version>
83 <extensions>true</extensions>
84 <configuration>
85 <instructions>
86 <Bundle-SymbolicName>org.openecomp.sdnc.dg.loader</Bundle-SymbolicName>
87 <Bundle-Activator>org.openecomp.sdnc.dg.loader.DGLoaderActivator</Bundle-Activator>
88 <Export-Package>org.openecomp.sdnc.dg.loader</Export-Package>
89 <Import-Package>*</Import-Package>
90 <DynamicImport-Package>*</DynamicImport-Package>
91 </instructions>
92 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
93 </configuration>
94 </plugin>
95
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-assembly-plugin</artifactId>
99 <version>2.4.1</version>
100 <configuration>
101 <descriptorRefs>
102 <descriptorRef>jar-with-dependencies</descriptorRef>
103 </descriptorRefs>
104 <finalName>dg-loader</finalName>
105 <archive>
106 <manifest>
107 <mainClass>org.openecomp.sdnc.dg.loader.DGXMLLoadNActivate</mainClass>
108 </manifest>
109 </archive>
110 <attach>false</attach>
111 </configuration>
112 <executions>
113 <execution>
114 <id>make-assembly</id>
115 <phase>package</phase>
116 <goals>
117 <goal>single</goal>
118 </goals>
119 </execution>
120 </executions>
121 </plugin>
122
123 </plugins>
124 <pluginManagement>
125 <plugins>
126 <!--This plugin's configuration is used to store Eclipse m2e settings
127 only. It has no influence on the Maven build itself. -->
128 <plugin>
129 <groupId>org.eclipse.m2e</groupId>
130 <artifactId>lifecycle-mapping</artifactId>
131 <version>1.0.0</version>
132 <configuration>
133 <lifecycleMappingMetadata>
134 <pluginExecutions>
135 <pluginExecution>
136 <pluginExecutionFilter>
137 <groupId>
138 com.brocade.developer
139 </groupId>
140 <artifactId>
141 providermodule-plugin
142 </artifactId>
143 <versionRange>
144 [1.2.0.100-SNAPSHOT,)
145 </versionRange>
146 <goals>
147 <goal>process</goal>
148 </goals>
149 </pluginExecutionFilter>
150 <action>
Hao Kuang58a71962017-09-01 14:11:57 +0000151 <ignore/>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -0500152 </action>
153 </pluginExecution>
154 </pluginExecutions>
155 </lifecycleMappingMetadata>
156 </configuration>
157 </plugin>
158 </plugins>
159 </pluginManagement>
160 </build>
161</project>