Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ The docs follow the [Diátaxis](https://diataxis.fr) framework:
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-platform</artifactId>
<version>0.2</version>
<type>pom</type>
</dependency>
```

Expand Down
1 change: 0 additions & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-platform</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
Expand Down
1 change: 0 additions & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ runs on any OS/arch:
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-platform</artifactId>
<version>0.2</version>
<type>pom</type>
</dependency>
```

Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
<groupId>io.github.dfa1.zstd</groupId>
<artifactId>zstd-platform</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.github.dfa1.zstd</groupId>
Expand Down
15 changes: 9 additions & 6 deletions zstd-platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
<artifactId>zstd-platform</artifactId>
<name>zstd-platform</name>
<description>zstd-java bindings bundled with every platform's native library</description>
<packaging>pom</packaging>
<!-- 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>

<!-- Convenience aggregator: 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. -->
<!-- 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>
Expand Down
Loading