Make sure to await close of stream.
[cyberduck.git] / pom.xml
blob6f306e734c9511c9b573c6d131ecacf0218662eb
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
7     <groupId>ch.cyberduck</groupId>
8     <artifactId>parent</artifactId>
9     <packaging>pom</packaging>
10     <version>4.7.3-SNAPSHOT</version>
12     <modules>
13         <module>pom/core</module>
14         <module>pom/config</module>
15         <module>pom/ui</module>
16         <module>pom/fs</module>
17         <module>pom/binding</module>
18         <module>pom/cli</module>
19     </modules>
21     <scm>
22         <connection>scm:git:https://g.iterate.ch/scm/iterate/cyberduck.git</connection>
23     </scm>
25     <profiles>
26         <profile>
27             <id>mac</id>
28             <activation>
29                 <os>
30                     <family>Mac</family>
31                 </os>
32             </activation>
33             <modules>
34                 <module>pom/cocoa</module>
35             </modules>
36         </profile>
37         <profile>
38             <id>windows</id>
39             <activation>
40                 <os>
41                     <family>Windows</family>
42                 </os>
43             </activation>
44             <modules>
45                 <module>pom/winforms</module>
46                 <module>pom/bundle</module>
47             </modules>
48         </profile>
49     </profiles>
51     <properties>
52         <maven.compiler.source>1.8</maven.compiler.source>
53         <maven.compiler.target>1.8</maven.compiler.target>
54     </properties>
56     <build>
57         <outputDirectory>${project.basedir}/build</outputDirectory>
58         <sourceDirectory>${project.basedir}/source</sourceDirectory>
59         <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
60         <extensions>
61             <extension>
62                 <groupId>org.springframework.build</groupId>
63                 <artifactId>aws-maven</artifactId>
64                 <version>5.0.0.RELEASE</version>
65             </extension>
66         </extensions>
67         <pluginManagement>
68             <plugins>
69                 <plugin>
70                     <groupId>org.apache.maven.plugins</groupId>
71                     <artifactId>maven-install-plugin</artifactId>
72                     <version>2.5.2</version>
73                 </plugin>
74                 <plugin>
75                     <groupId>org.codehaus.mojo</groupId>
76                     <artifactId>build-helper-maven-plugin</artifactId>
77                     <version>1.9.1</version>
78                 </plugin>
79             </plugins>
80         </pluginManagement>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-source-plugin</artifactId>
85                 <version>2.4</version>
86                 <executions>
87                     <execution>
88                         <id>attach-sources</id>
89                         <goals>
90                             <goal>jar</goal>
91                         </goals>
92                     </execution>
93                 </executions>
94             </plugin>
95             <plugin>
96                 <groupId>org.apache.maven.plugins</groupId>
97                 <artifactId>maven-javadoc-plugin</artifactId>
98                 <version>2.10.3</version>
99                 <executions>
100                     <execution>
101                         <id>attach-javadocs</id>
102                         <goals>
103                             <goal>jar</goal>
104                         </goals>
105                     </execution>
106                 </executions>
107             </plugin>
108         </plugins>
109     </build>
111     <distributionManagement>
112         <repository>
113             <id>maven.iterate.ch-release</id>
114             <url>s3://repo.maven.iterate.ch/releases/</url>
115             <layout>default</layout>
116         </repository>
117         <snapshotRepository>
118             <id>maven.iterate.ch-snapshot</id>
119             <url>s3://repo.maven.iterate.ch/snapshots/</url>
120         </snapshotRepository>
121     </distributionManagement>
123     <repositories>
124         <repository>
125             <id>maven.iterate.ch-release</id>
126             <url>s3://repo.maven.iterate.ch/releases/</url>
127             <layout>default</layout>
128             <releases>
129                 <enabled>true</enabled>
130             </releases>
131             <snapshots>
132                 <enabled>false</enabled>
133             </snapshots>
134         </repository>
135         <repository>
136             <id>maven.iterate.ch-snapshot</id>
137             <url>s3://repo.maven.iterate.ch/snapshots/</url>
138             <layout>default</layout>
139             <releases>
140                 <enabled>false</enabled>
141             </releases>
142             <snapshots>
143                 <enabled>true</enabled>
144             </snapshots>
145         </repository>
146     </repositories>
147 </project>