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
|
*.iws
|
||||||
out/
|
out/
|
||||||
build/
|
build/
|
||||||
|
jars/
|
||||||
target/
|
target/
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
atlassian-ide-plugin.xml
|
atlassian-ide-plugin.xml
|
||||||
|
@ -38,16 +38,20 @@
|
|||||||
<!-- Handles shading of dependencies in the final output jar -->
|
<!-- Handles shading of dependencies in the final output jar -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>3.5.3</version>
|
<version>3.6.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
<outputDirectory>${project.basedir}/jars</outputDirectory>
|
||||||
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
|
<descriptorRefs>
|
||||||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||||
|
</descriptorRefs>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>shade</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user