blob: 23c13e3a10f03f0a90f16659df3f4c5bca4fcf5d [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Patrick Brady57b5eef2017-02-10 15:00:49 -08003 <parent>
4 <artifactId>appc-lifecycle-management</artifactId>
5 <groupId>org.openecomp.appc</groupId>
Jessica Wagantall65367992017-11-16 17:22:13 -08006 <version>1.3.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -08007 </parent>
beili.zhoufe0e9892017-08-10 14:54:42 -04008 <modelVersion>4.0.0</modelVersion>
Patrick Brady57b5eef2017-02-10 15:00:49 -08009 <name>appc-lifecycle-management-features</name>
10 <artifactId>appc-lifecycle-management-features</artifactId>
11
12 <packaging>jar</packaging>
13
14 <dependencies>
15 <dependency>
16 <groupId>org.openecomp.appc</groupId>
17 <artifactId>appc-lifecycle-management-api</artifactId>
18 <version>${project.version}</version>
19 </dependency>
20
21 <dependency>
22 <groupId>org.openecomp.appc</groupId>
23 <artifactId>appc-lifecycle-management-core</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 </dependencies>
27
28 <build>
29 <resources>
30 <resource>
31 <filtering>true</filtering>
32 <directory>src/main/resources</directory>
33 </resource>
34 </resources>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-resources-plugin</artifactId>
39 <executions>
40 <execution>
41 <id>filter</id>
42 <goals>
43 <goal>resources</goal>
44 </goals>
45 <phase>generate-resources</phase>
46 </execution>
47 </executions>
48 </plugin>
Patrick Brady57b5eef2017-02-10 15:00:49 -080049 <plugin>
50 <groupId>org.codehaus.mojo</groupId>
51 <artifactId>build-helper-maven-plugin</artifactId>
52 <executions>
53 <execution>
54 <id>attach-artifacts</id>
55 <goals>
56 <goal>attach-artifact</goal>
57 </goals>
58 <phase>package</phase>
59 <configuration>
60 <artifacts>
61 <artifact>
62 <file>${project.build.directory}/classes/${features.file}</file>
63 <type>xml</type>
64 <classifier>features</classifier>
65 </artifact>
66 </artifacts>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71
72 <!-- Skipping ODL feature test -->
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-surefire-plugin</artifactId>
76 <configuration>
77 <skipTests>true</skipTests>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82</project>