-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (58 loc) · 2.22 KB
/
Copy pathpom.xml
File metadata and controls
61 lines (58 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.dfa1.zstd</groupId>
<artifactId>zstd-java</artifactId>
<version>0.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>zstd-platform</artifactId>
<name>zstd-platform</name>
<description>zstd-java bindings bundled with every platform's native library</description>
<!-- Empty convenience jar (no sources of its own): a single, ordinary jar
dependency that transitively pulls everything. jar packaging (not pom) so
clients can add it like any normal artifact. -->
<packaging>jar</packaging>
<!-- One dependency pulls the bindings plus all six native libraries, so a
build runs on any OS/arch without choosing a classifier. Costs ~3.8 MB of
natives (five unused per platform); for a known single target depend on
zstd + the one zstd-native-<classifier> directly. Versions come from the
parent's dependencyManagement. -->
<dependencies>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd</artifactId>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-osx-aarch64</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-osx-x86_64</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-linux-x86_64</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-linux-aarch64</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-windows-x86_64</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-native-windows-aarch64</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>