Make version three digit long.
[cyberduck.git] / pom / ui / pom.xml
blobf7d9bb8d892b2f71ea1a9c42f514ffa0aa0ee7d6
1 <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/maven-v4_0_0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>ch.cyberduck</groupId>
5         <artifactId>parent</artifactId>
6         <relativePath>../../pom.xml</relativePath>
7         <version>4.8.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>ui</artifactId>
10     <packaging>pom</packaging>
12     <build>
13         <plugins>
14             <plugin>
15                 <groupId>org.codehaus.mojo</groupId>
16                 <artifactId>build-helper-maven-plugin</artifactId>
17                 <executions>
18                     <execution>
19                         <id>install-ui</id>
20                         <phase>package</phase>
21                         <goals>
22                             <goal>attach-artifact</goal>
23                         </goals>
24                         <configuration>
25                             <artifacts>
26                                 <artifact>
27                                     <type>jar</type>
28                                     <file>${project.basedir}/../../build/ui-${project.version}.jar</file>
29                                 </artifact>
30                             </artifacts>
31                         </configuration>
32                     </execution>
33                 </executions>
34             </plugin>
35         </plugins>
36     </build>
38     <dependencies>
39         <dependency>
40             <groupId>ch.cyberduck</groupId>
41             <artifactId>core</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44     </dependencies>
45 </project>