blob: 041307fc113271cdd86a2e65d78b7a02aacdd3d8 [file] [log] [blame]
Dan Timoneyc3342a02017-09-05 20:33:51 -04001<?xml version='1.0' encoding='UTF-8'?>
Dan Timoney03575372017-10-13 12:07:01 -04002<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>
Dan Timoneyc3342a02017-09-05 20:33:51 -04005
Dan Timoney03575372017-10-13 12:07:01 -04006 <parent>
7 <groupId>org.onap.sdnc.northbound</groupId>
8 <artifactId>generic-resource-api</artifactId>
9 <version>1.2.0-SNAPSHOT</version>
10 </parent>
Dan Timoneyc3342a02017-09-05 20:33:51 -040011
Dan Timoney03575372017-10-13 12:07:01 -040012 <artifactId>generic-resource-api-features</artifactId>
13 <packaging>jar</packaging>
Dan Timoneyc3342a02017-09-05 20:33:51 -040014
Dan Timoney03575372017-10-13 12:07:01 -040015 <dependencies>
16 <dependency>
17 <groupId>org.onap.sdnc.northbound</groupId>
18 <artifactId>generic-resource-api-model</artifactId>
19 </dependency>
20 <dependency>
21 <groupId>org.onap.sdnc.northbound</groupId>
22 <artifactId>generic-resource-api-provider</artifactId>
23 </dependency>
Dan Timoneyc3342a02017-09-05 20:33:51 -040024
25 <dependency>
26 <groupId>org.opendaylight.mdsal</groupId>
27 <artifactId>features-mdsal</artifactId>
Dan Timoney03575372017-10-13 12:07:01 -040028 <version>${odl.mdsal.features.version}</version>
Dan Timoneyc3342a02017-09-05 20:33:51 -040029 <type>xml</type>
30 <classifier>features</classifier>
31 <scope>runtime</scope>
32 </dependency>
33
Dan Timoney03575372017-10-13 12:07:01 -040034 <dependency><!-- Required for launching the feature tests -->
Dan Timoneyc3342a02017-09-05 20:33:51 -040035 <groupId>org.opendaylight.odlparent</groupId>
36 <artifactId>features-test</artifactId>
37 <version>${odl.commons.opendaylight.version}</version>
38 <scope>test</scope>
39 </dependency>
40
41 <dependency>
42 <groupId>org.opendaylight.yangtools</groupId>
43 <artifactId>features-yangtools</artifactId>
Dan Timoney03575372017-10-13 12:07:01 -040044 <version>${odl.yangtools.version}</version>
Dan Timoneyc3342a02017-09-05 20:33:51 -040045 <type>xml</type>
46 <classifier>features</classifier>
47 <scope>runtime</scope>
48 </dependency>
Dan Timoney03575372017-10-13 12:07:01 -040049 </dependencies>
Dan Timoneyc3342a02017-09-05 20:33:51 -040050
Dan Timoney03575372017-10-13 12:07:01 -040051 <build>
52 <resources>
53 <resource>
54 <filtering>true</filtering>
55 <directory>src/main/resources</directory>
56 </resource>
57 </resources>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-resources-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>filter</id>
65 <goals>
66 <goal>resources</goal>
67 </goals>
68 <phase>generate-resources</phase>
69 </execution>
70 </executions>
71 </plugin>
72 <plugin>
73 <groupId>org.codehaus.mojo</groupId>
74 <artifactId>build-helper-maven-plugin</artifactId>
75 <executions>
76 <execution>
77 <id>attach-artifacts</id>
78 <goals>
79 <goal>attach-artifact</goal>
80 </goals>
81 <phase>package</phase>
82 <configuration>
83 <artifacts>
84 <artifact>
85 <file>${project.build.directory}/classes/${features.file}</file>
86 <type>xml</type>
87 <classifier>features</classifier>
88 </artifact>
89 </artifacts>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 </build>
Dan Timoneyc3342a02017-09-05 20:33:51 -040096</project>