Revert.
[cyberduck.git] / pom / cli / pom.xml
blobea8a7471e164aba37be7b86f8e49e9563d42e14a
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.7.3-SNAPSHOT</version>
10     </parent>
11     <artifactId>cli</artifactId>
12     <packaging>pom</packaging>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.codehaus.mojo</groupId>
18                 <artifactId>build-helper-maven-plugin</artifactId>
19                 <executions>
20                     <execution>
21                         <id>install-cli</id>
22                         <phase>package</phase>
23                         <goals>
24                             <goal>attach-artifact</goal>
25                         </goals>
26                         <configuration>
27                             <artifacts>
28                                 <artifact>
29                                     <type>jar</type>
30                                     <file>${project.basedir}/../../build/cli-${project.version}.jar</file>
31                                 </artifact>
32                             </artifacts>
33                         </configuration>
34                     </execution>
35                 </executions>
36             </plugin>
37         </plugins>
38     </build>
40     <dependencies>
41         <dependency>
42             <groupId>ch.cyberduck</groupId>
43             <artifactId>core</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46     </dependencies>
47 </project>