blob: 5b3494e827cbf291acbab5e9408d786e22c6ef2d [file] [log] [blame]
Skip Wonnellcf4b15a2017-08-15 21:18:04 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell463f70e2018-01-12 10:00:59 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 Copyright (C) 2017 Amdocs
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080027 <groupId>org.onap.appc.plugins</groupId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050028 <artifactId>dg-loader</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070029 <version>1.4.0-SNAPSHOT</version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050030 </parent>
31 <artifactId>dg-loader-features</artifactId>
32 <name>Directed Graph Loader - Features</name>
33
34 <packaging>jar</packaging>
35
36 <dependencies>
37 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080038 <groupId>org.onap.appc.plugins</groupId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050039 <artifactId>dg-loader-provider</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42
43 <dependency>
44 <groupId>commons-lang</groupId>
45 <artifactId>commons-lang</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050046 <scope>compile</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>org.opendaylight.mdsal</groupId>
51 <artifactId>features-mdsal</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050052 <classifier>features</classifier>
53 <type>xml</type>
54
55 <scope>runtime</scope>
56 </dependency>
57
58
59 <!-- dependency for opendaylight-karaf-empty for use by testing -->
60 <dependency>
61 <groupId>org.opendaylight.controller</groupId>
62 <artifactId>opendaylight-karaf-empty</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050063 <type>zip</type>
64 </dependency>
65
66
67 <dependency>
68 <!-- Required for launching the feature tests -->
69 <groupId>org.opendaylight.odlparent</groupId>
70 <artifactId>features-test</artifactId>
71 <version>${odl.commons.opendaylight.version}</version>
72 <scope>test</scope>
73 </dependency>
74
75 </dependencies>
76
77 <build>
78 <resources>
79 <resource>
80 <filtering>true</filtering>
81 <directory>src/main/resources</directory>
82 </resource>
83 </resources>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-resources-plugin</artifactId>
88 <executions>
89 <execution>
90 <id>filter</id>
91 <goals>
92 <goal>resources</goal>
93 </goals>
94 <phase>generate-resources</phase>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>build-helper-maven-plugin</artifactId>
101 <executions>
102 <execution>
103 <id>attach-artifacts</id>
104 <goals>
105 <goal>attach-artifact</goal>
106 </goals>
107 <phase>package</phase>
108 <configuration>
109 <artifacts>
110 <artifact>
111 <file>${project.build.directory}/classes/${features.file}</file>
112 <type>xml</type>
113 <classifier>features</classifier>
114 </artifact>
115 </artifacts>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
120 </plugins>
121 </build>
122</project>