Skip to content

Some core classes that can be used in multiple of our projects

License

Notifications You must be signed in to change notification settings

BetterPluginsSpigot/BetterCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BetterCore

Need more helper classes? Check our helper repository (BetterPlugins devs only)! Some core classes that can be used in multiple of our projects

Get it through Maven:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
  
<dependencies>
    <dependency>
        <groupId>com.github.betterpluginsspigot</groupId>
        <artifactId>bettercore</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>
  
  <!-- Prevent compatibility issues with other BetterX plugins -->
  <build>
    <!-- Shade BetterYAML into your jar-->
   <plugins>
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
         <version>3.2.1</version>
         <configuration>
            <!-- Only include required classes -->
            <minimizeJar>true</minimizeJar>
            <!-- Specify the paths to be relocated -->
            <relocations>
               <relocation>
                  <pattern>be.betterplugins.core</pattern>
                  <shadedPattern>YOUR.UNIQUE.PACKAGE.NAME.HERE</shadedPattern>
               </relocation>
            </relocations>
         </configuration>
         <executions>
            <execution>
               <phase>package</phase>
               <goals>
                  <goal>shade</goal>
               </goals>
            </execution>
         </executions>
      </plugin>
   </plugins>
</build>