Merge pull request #64 in ITERATE/cyberduck from feature/windows/9074 to master
[cyberduck.git] / pom / core / launchservicesschemehandler / pom.xml
blob8ac3f013a18e0d33b4bd382ffa5b7f57361fb051
1 <!--
2   ~ Copyright (c) 2002-2015 David Kocher. All rights reserved.
3   ~ http://cyberduck.ch/
4   ~
5   ~ This program is free software; you can redistribute it and/or modify
6   ~ it under the terms of the GNU General Public License as published by
7   ~ the Free Software Foundation; either version 2 of the License, or
8   ~ (at your option) any later version.
9   ~
10   ~ This program is distributed in the hope that it will be useful,
11   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   ~ GNU General Public License for more details.
14   ~
15   ~ Bug fixes, suggestions and comments should be sent to feedback@cyberduck.ch
16   -->
18 <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">
19     <modelVersion>4.0.0</modelVersion>
20     <parent>
21         <groupId>ch.cyberduck</groupId>
22         <artifactId>core</artifactId>
23         <relativePath>../pom.xml</relativePath>
24         <version>4.8.0-SNAPSHOT</version>
25     </parent>
26     <artifactId>liblaunchservicesschemehandler</artifactId>
27     <packaging>pom</packaging>
29     <profiles>
30         <profile>
31             <id>mac</id>
32             <activation>
33                 <os>
34                     <family>Mac</family>
35                 </os>
36             </activation>
37             <build>
38                 <plugins>
39                     <plugin>
40                         <groupId>org.codehaus.mojo</groupId>
41                         <artifactId>build-helper-maven-plugin</artifactId>
42                         <executions>
43                             <execution>
44                                 <phase>package</phase>
45                                 <goals>
46                                     <goal>attach-artifact</goal>
47                                 </goals>
48                                 <configuration>
49                                     <artifacts>
50                                         <artifact>
51                                             <type>dylib</type>
52                                             <file>${project.basedir}/../../../build/${project.artifactId}.dylib</file>
53                                         </artifact>
54                                     </artifacts>
55                                 </configuration>
56                             </execution>
57                         </executions>
58                     </plugin>
59                 </plugins>
60             </build>
61         </profile>
62     </profiles>
63 </project>