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