mirror of
https://github.com/iterate-ch/cyberduck.git
synced 2026-05-26 19:10:49 +00:00
132 lines
5.1 KiB
XML
132 lines
5.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2002-2016 iterate GmbH. All rights reserved.
|
|
~ https://cyberduck.io/
|
|
~
|
|
~ This program is free software; you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation; either version 2 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ This program is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
-->
|
|
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>ch.cyberduck</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
<version>9.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>Cyberduck.Cryptomator</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>mac</id>
|
|
<activation>
|
|
<os>
|
|
<family>Mac</family>
|
|
</os>
|
|
</activation>
|
|
<properties>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>linux</id>
|
|
<activation>
|
|
<os>
|
|
<family>Linux</family>
|
|
</os>
|
|
</activation>
|
|
<properties>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>windows</id>
|
|
<activation>
|
|
<os>
|
|
<family>Windows</family>
|
|
</os>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>install-dll</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>attach-artifact</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifacts>
|
|
<artifact>
|
|
<classifier>net472</classifier>
|
|
<type>dll</type>
|
|
<file>${project.build.directory}/net472/Cyberduck.Cryptomator.dll</file>
|
|
</artifact>
|
|
<artifact>
|
|
<classifier>net8.0</classifier>
|
|
<type>dll</type>
|
|
<file>${project.build.directory}/net8.0/Cyberduck.Cryptomator.dll</file>
|
|
</artifact>
|
|
</artifacts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ch.cyberduck</groupId>
|
|
<artifactId>Cyberduck.Core</artifactId>
|
|
<classifier>net472</classifier>
|
|
<type>dll</type>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.cyberduck</groupId>
|
|
<artifactId>Cyberduck.Core</artifactId>
|
|
<classifier>net8.0</classifier>
|
|
<type>dll</type>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ch.cyberduck</groupId>
|
|
<artifactId>cryptomator</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ch.cyberduck</groupId>
|
|
<artifactId>core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |