mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-04-19 02:16:23 +02:00
Add Shaded API's
This commit is contained in:
parent
f4f1f76e25
commit
15efe95f23
56
pom.xml
56
pom.xml
@ -48,28 +48,12 @@
|
|||||||
<target>${maven.compiler.target}</target>
|
<target>${maven.compiler.target}</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- <plugin>
|
<!-- <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
<artifactId>maven-replacer-plugin</artifactId> <version>1.4.1</version> <executions>
|
||||||
<artifactId>maven-replacer-plugin</artifactId>
|
<execution> <phase>prepare-package</phase> <goals> <goal>replace</goal> </goals>
|
||||||
<version>1.4.1</version>
|
</execution> </executions> <configuration> <file>target/classes/plugin.yml</file>
|
||||||
<executions>
|
<replacements> <replacement> <token>${version}</token> <value>${version}</value>
|
||||||
<execution>
|
</replacement> </replacements> </configuration> </plugin> -->
|
||||||
<phase>prepare-package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>replace</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<file>target/classes/plugin.yml</file>
|
|
||||||
<replacements>
|
|
||||||
<replacement>
|
|
||||||
<token>${version}</token>
|
|
||||||
<value>${version}</value>
|
|
||||||
</replacement>
|
|
||||||
</replacements>
|
|
||||||
</configuration>
|
|
||||||
</plugin> -->
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>2.6</version>
|
<version>2.6</version>
|
||||||
@ -79,6 +63,28 @@
|
|||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
<configuration>
|
||||||
|
<artifactSet>
|
||||||
|
<includes>
|
||||||
|
<include>com.maxmind.geoip:*</include>
|
||||||
|
<include>com.sun.mail:*</include>
|
||||||
|
<include>javax.mail:*</include>
|
||||||
|
</includes>
|
||||||
|
</artifactSet>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
@ -135,10 +141,8 @@
|
|||||||
<repository>
|
<repository>
|
||||||
<id>sonatype-nexus-snapshots</id>
|
<id>sonatype-nexus-snapshots</id>
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
<!-- <snapshots>
|
<!-- <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy>
|
||||||
<enabled>true</enabled>
|
</snapshots> -->
|
||||||
<updatePolicy>always</updatePolicy>
|
|
||||||
</snapshots> -->
|
|
||||||
</repository>
|
</repository>
|
||||||
<!-- End of Spout Repo -->
|
<!-- End of Spout Repo -->
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user