Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.6.0</version>
- <configuration>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- <!-- 过滤掉所有 META-INF/maven 下的内容 -->
- <filters>
- <filter>
- <!-- *:* 表示所有 artifact -->
- <artifact>com.xericker:ArenaLegends</artifact>
- <excludes>
- <exclude>META-INF/maven/**</exclude>
- </excludes>
- </filter>
- </filters>
- <relocations>
- <relocation>
- <pattern>fr.mrmicky.fastboard</pattern>
- <!-- Replace 'com.yourpackage' with the package of your plugin -->
- <shadedPattern>com.xericker.arenalegends.core.board.handler</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.14.0</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
Advertisement
Add Comment
Please, Sign In to add comment