Make version three digit long.
[cyberduck.git] / pom.xml
blob593eb80b64b221fe985c58ea7e92f315c5b5e7b1
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     <modelVersion>4.0.0</modelVersion>
5     <groupId>ch.cyberduck</groupId>
6     <artifactId>parent</artifactId>
7     <packaging>pom</packaging>
8     <version>4.8.0-SNAPSHOT</version>
10     <modules>
11         <module>pom/core</module>
12         <module>pom/config</module>
13         <module>pom/ui</module>
14         <module>pom/fs</module>
15         <module>pom/binding</module>
16         <module>pom/cli</module>
17     </modules>
19     <scm>
20         <connection>scm:git:https://g.iterate.ch/scm/iterate/cyberduck.git</connection>
21       <tag>HEAD</tag>
22   </scm>
24     <profiles>
25         <profile>
26             <id>mac</id>
27             <activation>
28                 <os>
29                     <family>Mac</family>
30                 </os>
31             </activation>
32             <modules>
33                 <module>pom/cocoa</module>
34             </modules>
35         </profile>
36         <profile>
37             <id>windows</id>
38             <activation>
39                 <os>
40                     <family>Windows</family>
41                 </os>
42             </activation>
43             <modules>
44                 <module>pom/winforms</module>
45                 <module>pom/bundle</module>
46             </modules>
47         </profile>
48     </profiles>
50     <properties>
51         <maven.compiler.source>1.8</maven.compiler.source>
52         <maven.compiler.target>1.8</maven.compiler.target>
53     </properties>
55     <build>
56         <outputDirectory>${project.basedir}/build</outputDirectory>
57         <sourceDirectory>${project.basedir}/source</sourceDirectory>
58         <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
59         <extensions>
60             <extension>
61                 <groupId>org.springframework.build</groupId>
62                 <artifactId>aws-maven</artifactId>
63                 <version>5.0.0.RELEASE</version>
64             </extension>
65         </extensions>
66         <pluginManagement>
67             <plugins>
68                 <plugin>
69                     <groupId>org.apache.maven.plugins</groupId>
70                     <artifactId>maven-install-plugin</artifactId>
71                     <version>2.5.2</version>
72                 </plugin>
73                 <plugin>
74                     <groupId>org.codehaus.mojo</groupId>
75                     <artifactId>build-helper-maven-plugin</artifactId>
76                     <version>1.9.1</version>
77                 </plugin>
78                 <plugin>
79                     <groupId>org.apache.maven.plugins</groupId>
80                     <artifactId>maven-deploy-plugin</artifactId>
81                     <version>2.8.2</version>
82                 </plugin>
83                 <plugin>
84                     <groupId>org.apache.maven.plugins</groupId>
85                     <artifactId>maven-release-plugin</artifactId>
86                     <version>2.5.2</version>
87                 </plugin>
88             </plugins>
89         </pluginManagement>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-source-plugin</artifactId>
94                 <version>2.4</version>
95                 <executions>
96                     <execution>
97                         <id>attach-sources</id>
98                         <goals>
99                             <goal>jar</goal>
100                         </goals>
101                     </execution>
102                 </executions>
103             </plugin>
104             <plugin>
105                 <groupId>org.apache.maven.plugins</groupId>
106                 <artifactId>maven-javadoc-plugin</artifactId>
107                 <version>2.10.3</version>
108                 <executions>
109                     <execution>
110                         <id>attach-javadocs</id>
111                         <goals>
112                             <goal>jar</goal>
113                         </goals>
114                     </execution>
115                 </executions>
116             </plugin>
117         </plugins>
118     </build>
120     <distributionManagement>
121         <repository>
122             <id>maven.iterate.ch-release</id>
123             <url>s3://repo.maven.iterate.ch/releases/</url>
124             <layout>default</layout>
125         </repository>
126         <snapshotRepository>
127             <id>maven.iterate.ch-snapshot</id>
128             <url>s3://repo.maven.iterate.ch/snapshots/</url>
129         </snapshotRepository>
130     </distributionManagement>
132     <repositories>
133         <repository>
134             <id>maven.iterate.ch-release</id>
135             <url>s3://repo.maven.iterate.ch/releases/</url>
136             <layout>default</layout>
137             <releases>
138                 <enabled>true</enabled>
139             </releases>
140             <snapshots>
141                 <enabled>false</enabled>
142             </snapshots>
143         </repository>
144         <repository>
145             <id>maven.iterate.ch-snapshot</id>
146             <url>s3://repo.maven.iterate.ch/snapshots/</url>
147             <layout>default</layout>
148             <releases>
149                 <enabled>false</enabled>
150             </releases>
151             <snapshots>
152                 <enabled>true</enabled>
153             </snapshots>
154         </repository>
155     </repositories>
156 </project>