commands-framework-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.jwdeveloper.spigot.commands</groupId> <artifactId>commands-framework-core</artifactId> <version>1.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.jwdeveloper.spigot.commands</groupId> <artifactId>CommandsFramework</artifactId> <version>1.0.8</version> </parent> <artifactId>commands-framework-core</artifactId> <dependencies> <dependency> <groupId>io.github.jwdeveloper.spigot.commands</groupId> <artifactId>commands-framework-api</artifactId> <version>1.0.8</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.5.0</version> <!-- Use the latest version --> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>all</shadedClassifierName> <createDependencyReducedPom>false</createDependencyReducedPom> <minimizeJar>true</minimizeJar> <artifactSet> <includes> <include>*:*</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>