diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-11 19:58:44 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-11 19:58:44 -0700 |
| commit | deee9e021a62b8a7d1d4d57bc052289b68c0f106 (patch) | |
| tree | 888a8182059af65284c3788c0b9f83212a64398b /VtuberCaptchaUpdater | |
| parent | 8d8fd1296e5bec15a87b3f3e77aecf0378fe86fe (diff) | |
add shade plugin to pom.xml
Diffstat (limited to 'VtuberCaptchaUpdater')
| -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> |
