Skip to content

1.4.7

Compare
Choose a tag to compare
@Despical Despical released this 07 May 08:21
· 37 commits to main since this release
  • Now framework won't initialize if the package is not relocated.

How to relocate the default package?

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>3.4.1</version>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>shade</goal>
            </goals>
            <configuration>
                <relocations>
                    <relocation>
                        <pattern>me.despical.commandframework</pattern>
                        <shadedPattern>your.package.here</shadedPattern>
                    </relocation>
                </relocations>
            </configuration>
        </execution>
    </executions>
</plugin>

Full Changelog: 1.4.6...1.4.7