blob: 06c8c3ad085d5499727e14629f5c13e5b42db9cc [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>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -05009 </parent>
10 <artifactId>dg-loader-features</artifactId>
11 <name>Directed Graph Loader - Features</name>
12
13 <packaging>jar</packaging>
14
15 <dependencies>
16 <dependency>
17 <groupId>org.openecomp.appc.plugins</groupId>
18 <artifactId>dg-loader-provider</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21
22 <dependency>
23 <groupId>commons-lang</groupId>
24 <artifactId>commons-lang</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050025 <scope>compile</scope>
26 </dependency>
27
28 <dependency>
29 <groupId>org.opendaylight.mdsal</groupId>
30 <artifactId>features-mdsal</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050031 <classifier>features</classifier>
32 <type>xml</type>
33
34 <scope>runtime</scope>
35 </dependency>
36
37
38 <!-- dependency for opendaylight-karaf-empty for use by testing -->
39 <dependency>
40 <groupId>org.opendaylight.controller</groupId>
41 <artifactId>opendaylight-karaf-empty</artifactId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050042 <type>zip</type>
43 </dependency>
44
45
46 <dependency>
47 <!-- Required for launching the feature tests -->
48 <groupId>org.opendaylight.odlparent</groupId>
49 <artifactId>features-test</artifactId>
50 <version>${odl.commons.opendaylight.version}</version>
51 <scope>test</scope>
52 </dependency>
53
54 </dependencies>
55
56 <build>
57 <resources>
58 <resource>
59 <filtering>true</filtering>
60 <directory>src/main/resources</directory>
61 </resource>
62 </resources>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-resources-plugin</artifactId>
67 <executions>
68 <execution>
69 <id>filter</id>
70 <goals>
71 <goal>resources</goal>
72 </goals>
73 <phase>generate-resources</phase>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>build-helper-maven-plugin</artifactId>
80 <executions>
81 <execution>
82 <id>attach-artifacts</id>
83 <goals>
84 <goal>attach-artifact</goal>
85 </goals>
86 <phase>package</phase>
87 <configuration>
88 <artifacts>
89 <artifact>
90 <file>${project.build.directory}/classes/${features.file}</file>
91 <type>xml</type>
92 <classifier>features</classifier>
93 </artifact>
94 </artifacts>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
99 </plugins>
100 </build>
101</project>