Change nexus values to properties
[appc.git] / app-c / appc / appc-adapters / appc-ssh-adapter / appc-ssh-adapter-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-ssh-adapter</artifactId>
5                 <groupId>org.openecomp.appc</groupId>
6                 <version>1.0.0</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9
10         <artifactId>appc-ssh-adapter-features</artifactId>
11         <packaging>jar</packaging>
12
13         <dependencies>
14                 <dependency>
15                         <groupId>org.openecomp.appc</groupId>
16                         <artifactId>appc-ssh-adapter-api</artifactId>
17                         <version>${project.version}</version>
18                 </dependency>
19
20                 <dependency>
21                         <groupId>org.openecomp.appc</groupId>
22                         <artifactId>appc-ssh-adapter-sshd</artifactId>
23                         <version>${project.version}</version>
24                 </dependency>
25         </dependencies>
26
27         <build>
28                 <resources>
29                         <resource>
30                                 <filtering>true</filtering>
31                                 <directory>src/main/resources</directory>
32                         </resource>
33                 </resources>
34                 <plugins>
35                         <plugin>
36                                 <groupId>org.apache.maven.plugins</groupId>
37                                 <artifactId>maven-resources-plugin</artifactId>
38                                 <executions>
39                                         <execution>
40                                                 <id>filter</id>
41                                                 <goals>
42                                                         <goal>resources</goal>
43                                                 </goals>
44                                                 <phase>generate-resources</phase>
45                                         </execution>
46                                 </executions>
47                         </plugin>
48                         <plugin>
49                                 <groupId>org.codehaus.mojo</groupId>
50                                 <artifactId>build-helper-maven-plugin</artifactId>
51                                 <executions>
52                                         <execution>
53                                                 <id>attach-artifacts</id>
54                                                 <goals>
55                                                         <goal>attach-artifact</goal>
56                                                 </goals>
57                                                 <phase>package</phase>
58                                                 <configuration>
59                                                         <artifacts>
60                                                                 <artifact>
61                                                                         <file>${project.build.directory}/classes/${features.file}</file>
62                                                                         <type>xml</type>
63                                                                         <classifier>features</classifier>
64                                                                 </artifact>
65                                                         </artifacts>
66                                                 </configuration>
67                                         </execution>
68                                 </executions>
69                         </plugin>
70                 </plugins>
71         </build>
72 </project>