Skip to content

Commit c97f8f5

Browse files
authored
Update 1.2.3 (#18)
Shade Zstd into the plugin jar file
1 parent 7b69860 commit c97f8f5

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ms.kevi</groupId>
88
<artifactId>plotplugin</artifactId>
9-
<version>1.2.2</version>
9+
<version>1.2.3</version>
1010

1111
<properties>
1212
<maven.compiler.source>17</maven.compiler.source>
@@ -58,6 +58,26 @@
5858
<target>17</target>
5959
</configuration>
6060
</plugin>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-shade-plugin</artifactId>
64+
<version>3.3.0</version>
65+
<executions>
66+
<execution>
67+
<phase>package</phase>
68+
<goals>
69+
<goal>shade</goal>
70+
</goals>
71+
<configuration>
72+
<artifactSet>
73+
<includes>
74+
<include>com.github.luben:zstd-jni</include>
75+
</includes>
76+
</artifactSet>
77+
</configuration>
78+
</execution>
79+
</executions>
80+
</plugin>
6181
</plugins>
6282
</build>
6383

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Plots
2-
version: "1.2.2"
2+
version: "1.2.3"
33
api: [ "1.0.13" ]
44
author: Kevims
55
main: ms.kevi.plotplugin.PlotPlugin

0 commit comments

Comments
 (0)