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