-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
120 lines (116 loc) · 3.38 KB
/
Copy pathpom.xml
File metadata and controls
120 lines (116 loc) · 3.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?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</groupId>
<artifactId>parent</artifactId>
<version>0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>zstd-java</artifactId>
<name>zstd FFM Core</name>
<description>Java Foreign Function & Memory (FFM) bindings for zstd</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!--
Tests need the native library on the classpath. Each profile pulls in the
native artifact matching the host platform (test scope only).
-->
<profiles>
<profile>
<id>native-osx-aarch64</id>
<activation>
<os><family>mac</family><arch>aarch64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-osx-aarch64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>native-linux-x86_64</id>
<activation>
<os><family>unix</family><name>linux</name><arch>amd64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-linux-x86_64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>native-linux-aarch64</id>
<activation>
<os><family>unix</family><name>linux</name><arch>aarch64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-linux-aarch64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>native-osx-x86_64</id>
<activation>
<os><family>mac</family><arch>x86_64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-osx-x86_64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>native-windows-x86_64</id>
<activation>
<os><family>windows</family><arch>amd64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-windows-x86_64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>native-windows-aarch64</id>
<activation>
<os><family>windows</family><arch>aarch64</arch></os>
</activation>
<dependencies>
<dependency>
<groupId>io.github.dfa1</groupId>
<artifactId>zstd-java-native-windows-aarch64</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>