blob: 619466c7f41a876c3ca96fab59359129f6366bf3 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c9631e2017-08-29 14:16:20 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
Patrick Brady57b5eef2017-02-10 15:00:49 -080013
Skip Wonnell8c9631e2017-08-29 14:16:20 -050014 http://www.apache.org/licenses/LICENSE-2.0
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Skip Wonnell8c9631e2017-08-29 14:16:20 -050016 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
Patrick Brady57b5eef2017-02-10 15:00:49 -080021
Skip Wonnell8c9631e2017-08-29 14:16:20 -050022 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
25<project xmlns="http://maven.apache.org/POM/4.0.0"
26 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
30 <artifactId>appc-chef-adapter</artifactId>
31 <groupId>org.openecomp.appc</groupId>
32 <version>1.1.0-SNAPSHOT</version>
33 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
Skip Wonnell8c9631e2017-08-29 14:16:20 -050035 <artifactId>appc-chef-adapter-features</artifactId>
36 <name>APPC Chef Adaptor - Features</name>
37 <packaging>jar</packaging>
Patrick Brady57b5eef2017-02-10 15:00:49 -080038
Skip Wonnell8c9631e2017-08-29 14:16:20 -050039 <properties>
40 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
41 </properties>
Patrick Brady57b5eef2017-02-10 15:00:49 -080042
Skip Wonnell8c9631e2017-08-29 14:16:20 -050043 <dependencies>
44 <dependency>
45 <groupId>org.openecomp.appc</groupId>
46 <artifactId>appc-chef-adapter-bundle</artifactId>
47 <version>${project.version}</version>
48 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080049
Skip Wonnell8c9631e2017-08-29 14:16:20 -050050 <dependency>
51 <groupId>commons-lang</groupId>
52 <artifactId>commons-lang</artifactId>
53 <scope>compile</scope>
54 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080055
Skip Wonnell8c9631e2017-08-29 14:16:20 -050056 <dependency>
57 <groupId>org.opendaylight.mdsal</groupId>
58 <artifactId>features-mdsal</artifactId>
59 <classifier>features</classifier>
60 <type>xml</type>
61 <scope>runtime</scope>
62 </dependency>
63
64 <!-- dependency for opendaylight-karaf-empty for use by testing -->
65 <dependency>
66 <groupId>org.opendaylight.controller</groupId>
67 <artifactId>opendaylight-karaf-empty</artifactId>
68 <type>zip</type>
69 </dependency>
70
71 <dependency>
72 <groupId>org.opendaylight.yangtools</groupId>
73 <artifactId>features-yangtools</artifactId>
74 <classifier>features</classifier>
75 <type>xml</type>
76 <scope>runtime</scope>
77 </dependency>
78 </dependencies>
79
80 <build>
81 <resources>
82 <resource>
83 <filtering>true</filtering>
84 <directory>src/main/resources</directory>
85 </resource>
86 </resources>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-resources-plugin</artifactId>
91 <executions>
92 <execution>
93 <id>filter</id>
94 <goals>
95 <goal>resources</goal>
96 </goals>
97 <phase>generate-resources</phase>
98 </execution>
99 </executions>
100 </plugin>
101 <plugin>
102 <groupId>org.codehaus.mojo</groupId>
103 <artifactId>build-helper-maven-plugin</artifactId>
104 <executions>
105 <execution>
106 <id>attach-artifacts</id>
107 <goals>
108 <goal>attach-artifact</goal>
109 </goals>
110 <phase>package</phase>
111 <configuration>
112 <artifacts>
113 <artifact>
114 <file>${project.build.directory}/classes/${features.file}</file>
115 <type>xml</type>
116 <classifier>features</classifier>
117 </artifact>
118 </artifacts>
119 </configuration>
120 </execution>
121 </executions>
122 </plugin>
123 </plugins>
124 </build>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800125</project>