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.MinelinkNetwork:CombatTagPlus:v1.2.4'
}
dependencies {
implementation("com.github.MinelinkNetwork:CombatTagPlus:v1.2.4")
}
<dependency>
<groupId>com.github.MinelinkNetwork</groupId>
<artifactId>CombatTagPlus</artifactId>
<version>v1.2.4</version>
</dependency>
libraryDependencies += "com.github.MinelinkNetwork" % "CombatTagPlus" % "v1.2.4"
:dependencies [[com.github.MinelinkNetwork/CombatTagPlus "v1.2.4"]]
CombatTagPlus is the last plugin you'll ever need to stop those dirty combat loggers!
You can acquire development builds of CombatTagPlus from the Minelink Network CI server.
| Permission | Description | Default | | -------------------------| ------------------------------------------ | ----------- | | ctplus.reload | Reload CombatTagPlus configuration | operator | | ctplus.bypass.tag | Bypass combat tagging | operator | | ctplus.bypass.command | Bypass command restrictions in combat | operator | | ctplus.bypass.blockedit | Bypass block edit restrictions in combat | operator | | ctplus.bypass.enderpearl | Bypass enderpearl restrictions in combat | operator | | ctplus.bypass.flying | Bypass flying restriction in combat | operator | | ctplus.bypass.teleport | Bypass teleportation restriction in combat | operator | | ctplus.check | Check remaining combat timer | everyone | | ctplus.logout | Initiate a safe logout | everyone | | ctplus.notify.kill | Receive kill/death message broadcast | everyone |
Thanks :)
CombatTagPlus is licensed to you freely under the terms of the LGPL license.
YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.