PixelOutlaw/spigot-plugin-parent


A parent for all Pixel Outlaw Spigot plugins.

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.PixelOutlaw:spigot-plugin-parent:1.17.1.6'
	}
	dependencies {
		implementation("com.github.PixelOutlaw:spigot-plugin-parent:1.17.1.6")
	}
	<dependency>
	    <groupId>com.github.PixelOutlaw</groupId>
	    <artifactId>spigot-plugin-parent</artifactId>
	    <version>1.17.1.6</version>
	</dependency>

                            
    libraryDependencies += "com.github.PixelOutlaw" % "spigot-plugin-parent" % "1.17.1.6"
        
        

                            
    :dependencies [[com.github.PixelOutlaw/spigot-plugin-parent "1.17.1.6"]]
        
        

Readme


spigot-plugin-parent

Maven Central

Maven parent for all Pixel Outlaw Spigot plugins.

How to Get

Add the following dependency to your POM:

<parent>
    <groupId>io.pixeloutlaw</groupId>
    <artifactId>spigot-plugin-parent</artifactId>
    <version>x.y.z.aa</version>
</parent>

CI/CD

CI

mvn verify will be run on every PR.

CD / Making a Release

Creating a GitHub release will make a new release with the version from the GitHub release name and publish it to Maven Central.