Build demo plugin jar to /jars
All checks were successful
Deploy Demo Plugin / docker (17, 3.8.5) (push) Successful in 35s
All checks were successful
Deploy Demo Plugin / docker (17, 3.8.5) (push) Successful in 35s
This commit is contained in:
parent
58045b19e1
commit
f79d42a45e
1
DemoSpigotPlugin/.gitignore
vendored
1
DemoSpigotPlugin/.gitignore
vendored
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user