Merge branch 'master' of https://github.com/mcMMO-Dev/mcMMO into spears

This commit is contained in:
nossr50
2025-12-13 16:06:02 -08:00
2 changed files with 38 additions and 1 deletions

37
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,37 @@
pipeline {
agent any
tools {
jdk 'jdk17'
}
options {
timestamps()
disableConcurrentBuilds()
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
sh '''
./mvnw -V -B clean package
'''
}
}
}
post {
success {
echo 'Build succeeded'
}
failure {
echo 'Build failed'
}
}
}

View File

@@ -23,7 +23,7 @@ If you are using maven, you can add mcMMO API to your plugin by adding it to pom
<dependency>
<groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId>
<version>2.2.004</version>
<version>put-the-version-here</version>
</dependency>
```
### Builds