Skip to content

Commit c4055e7

Browse files
committed
ci: disable maven-shade-plugin
1 parent 36730dc commit c4055e7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/settings.xml

+1
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ under the License.
261261
<checkstyle.skip>false</checkstyle.skip>
262262
<pmd.skip>false</pmd.skip>
263263
<pmd.analysisCacheLocation>${user.home}/.cache/runelite/pmd.cache</pmd.analysisCacheLocation>
264+
<shade.skip>true</shade.skip>
264265
</properties>
265266
</profile>
266267
</profiles>

runelite-client/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
<pmd.skip>true</pmd.skip>
4141
<git.commit.id.abbrev>nogit</git.commit.id.abbrev>
4242
<git.dirty>false</git.dirty>
43+
<shade.skip>false</shade.skip>
4344
</properties>
4445

4546
<dependencies>
@@ -381,14 +382,15 @@
381382
<plugin>
382383
<groupId>org.apache.maven.plugins</groupId>
383384
<artifactId>maven-shade-plugin</artifactId>
384-
<version>3.2.3</version>
385+
<version>3.3.0</version>
385386
<executions>
386387
<execution>
387388
<phase>package</phase>
388389
<goals>
389390
<goal>shade</goal>
390391
</goals>
391392
<configuration>
393+
<skip>${shade.skip}</skip>
392394
<shadedArtifactAttached>true</shadedArtifactAttached>
393395
<shadedClassifierName>shaded</shadedClassifierName>
394396

0 commit comments

Comments
 (0)