304634fdfa523ac68412b4a2f6fcd16e9d1f16d9
[appc.git] / appc-lifecycle-management / appc-lifecycle-management-features / pom.xml
1 <?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">
3   <parent>
4     <artifactId>appc-lifecycle-management</artifactId>
5     <groupId>org.onap.appc</groupId>
6     <version>1.3.0-SNAPSHOT</version>
7   </parent>
8   <modelVersion>4.0.0</modelVersion>
9   <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.onap.appc</groupId>
17       <artifactId>appc-lifecycle-management-api</artifactId>
18       <version>${project.version}</version>
19     </dependency>
20
21      <dependency>
22       <groupId>org.onap.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>
49       <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>