Fix naming, add missing module.
[cyberduck.git] / pom / cli / pom.xml
blob79e2daf8a374c956cb6429c364c45fc7c14c0b2c
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>ch.cyberduck</groupId>
7         <artifactId>parent</artifactId>
8         <relativePath>../../pom.xml</relativePath>
9         <version>4.8.0-SNAPSHOT</version>
10     </parent>
11     <artifactId>cli</artifactId>
12     <packaging>pom</packaging>
13     <version>4.8.0-SNAPSHOT</version>
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.codehaus.mojo</groupId>
19                 <artifactId>build-helper-maven-plugin</artifactId>
20                 <executions>
21                     <execution>
22                         <id>install-cli</id>
23                         <phase>package</phase>
24                         <goals>
25                             <goal>attach-artifact</goal>
26                         </goals>
27                         <configuration>
28                             <artifacts>
29                                 <artifact>
30                                     <type>jar</type>
31                                     <file>${project.basedir}/../../build/cli-${project.version}.jar</file>
32                                 </artifact>
33                             </artifacts>
34                         </configuration>
35                     </execution>
36                 </executions>
37             </plugin>
38         </plugins>
39     </build>
41     <dependencies>
42         <dependency>
43             <groupId>ch.cyberduck</groupId>
44             <artifactId>core</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47     </dependencies>
48 </project>