blob: 4a8dc9e2a3e0bcff98677e0164041e08482fa93f [file] [log] [blame]
Anand Chaturvedie178b072017-08-14 20:10:36 -04001<?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>
Patrick Brady07567592017-12-13 11:09:30 -08006 <groupId>org.onap.appc</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -04007 <artifactId>appc-network-inventory-client</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Anand Chaturvedie178b072017-08-14 20:10:36 -04009 </parent>
10 <artifactId>appc-network-inventory-client-features</artifactId>
11 <name>APPC Network Inventory - Features</name>
12 <packaging>jar</packaging>
13
14 <dependencies>
15 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080016 <groupId>org.onap.appc</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040017 <artifactId>appc-network-inventory-client-provider</artifactId>
18 </dependency>
19
20 <dependency>
21 <groupId>commons-lang</groupId>
22 <artifactId>commons-lang</artifactId>
23 <scope>compile</scope>
24 </dependency>
25
26 <dependency>
27 <groupId>org.opendaylight.mdsal</groupId>
28 <artifactId>features-mdsal</artifactId>
29 <classifier>features</classifier>
30 <type>xml</type>
31 <scope>runtime</scope>
32 </dependency>
33 <dependency>
34 <groupId>org.opendaylight.yangtools</groupId>
35 <artifactId>features-yangtools</artifactId>
36 <classifier>features</classifier>
37 <type>xml</type>
38 <scope>runtime</scope>
39 </dependency>
40
41
42 <dependency>
43 <groupId>com.sun.jersey</groupId>
44 <artifactId>jersey-client</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>com.sun.jersey</groupId>
48 <artifactId>jersey-core</artifactId>
49 </dependency>
50
51 </dependencies>
52
53 <build>
54 <resources>
55 <resource>
56 <filtering>true</filtering>
57 <directory>src/main/resources</directory>
58 </resource>
59 </resources>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-resources-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>filter</id>
67 <goals>
68 <goal>resources</goal>
69 </goals>
70 <phase>generate-resources</phase>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>build-helper-maven-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>attach-artifacts</id>
80 <goals>
81 <goal>attach-artifact</goal>
82 </goals>
83 <phase>package</phase>
84 <configuration>
85 <artifacts>
86 <artifact>
87 <file>${project.build.directory}/classes/${features.file}</file>
88 <type>xml</type>
89 <classifier>features</classifier>
90 </artifact>
91 </artifacts>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
97 </build>
98</project>