Build demo plugin jar to /jars
All checks were successful
Deploy Demo Plugin / docker (17, 3.8.5) (push) Successful in 35s

This commit is contained in:
Braydon 2024-04-26 13:55:59 -04:00
parent 58045b19e1
commit f79d42a45e
2 changed files with 9 additions and 4 deletions

@ -17,6 +17,7 @@ cmake-build-*/
*.iws
out/
build/
jars/
target/
.idea_modules/
atlassian-ide-plugin.xml

@ -38,16 +38,20 @@
<!-- Handles shading of dependencies in the final output jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.3</version>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<outputDirectory>${project.basedir}/jars</outputDirectory>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
<goal>single</goal>
</goals>
</execution>
</executions>