Files
cyberduck/cli/linux/pom.xml
T
David Kocher 78ebbb345b Revert "Temporarily change version."
This reverts commit 75e76c44ce.
2026-04-21 16:26:48 +02:00

156 lines
5.9 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>cli-linux</artifactId>
<description>Cyberduck CLI Linux</description>
<packaging>pom</packaging>
<profiles>
<profile>
<id>linux</id>
<activation>
<os>
<family>Linux</family>
</os>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-profiles</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>ch.cyberduck</groupId>
<artifactId>profiles</artifactId>
<version>${project.version}</version>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/profiles
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>arm64</id>
<activation>
<os>
<arch>aarch64</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>libjnidispatch</artifactId>
<classifier>${os.arch}</classifier>
<type>so</type>
<version>${jna-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>${jansi.version}</version>
<classifier>arm64</classifier>
<type>so</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>arm32</id>
<activation>
<os>
<arch>arm</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>libjnidispatch</artifactId>
<classifier>${os.arch}</classifier>
<type>so</type>
<version>${jna-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>${jansi.version}</version>
<classifier>${os.arch}</classifier>
<type>so</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>x86_64</id>
<activation>
<os>
<arch>amd64</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>libjnidispatch</artifactId>
<classifier>x86_64</classifier>
<type>so</type>
<version>${jna-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>${jansi.version}</version>
<classifier>x86_64</classifier>
<type>so</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>ch.cyberduck</groupId>
<artifactId>cli</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>