mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-01-25 00:31:22 +01:00
5f762c9417
Pitest was unable to run because it could not find a couple of NMS classes and some other stuff. We are excluding the `SongodaCoreConstantsTest` because it apparently sees the Skip-Exception we are throwing as a failed test instead of a skipped one. Causing it to abort its whole operation – Probably just a bug in Pitest I also added the groupId to the two maven/test plugins as they were missing. I wondered a couple of times why InjtelliJ cannot detect them while `mvn` runs as expected. Looks like I never realised that missing - Now it is like it should have been |
||
---|---|---|
.github | ||
Compatibility | ||
Core | ||
NMS | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
pom.xml | ||
README.md |
SongodaCore
An elaborate multi functional general Spigot plugin compatibility core and general use API.
Maven
Repository
<repository>
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
</repository>
Artifact
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
<version>VERSION</version>
</dependency>
Gradle
Repository
repositories {
maven {
url 'https://repo.songoda.com/repository/public/'
}
}
Artifact
dependencies {
compileOnly 'com.songoda:SongodaCore:VERSION'
}