diff options
| -rw-r--r-- | VtuberCaptchaUpdater/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/VtuberCaptchaUpdater/pom.xml b/VtuberCaptchaUpdater/pom.xml index a17a550..bda3aa3 100644 --- a/VtuberCaptchaUpdater/pom.xml +++ b/VtuberCaptchaUpdater/pom.xml @@ -42,6 +42,27 @@ <target>9</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.5.0</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <createDependencyReducedPom>false</createDependencyReducedPom> + <transformers> + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>Main</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project> |
