forked from GeyserMC/Geyser
commit
def79c1e8c
2 changed files with 85 additions and 1 deletions
49
Jenkinsfile
vendored
Normal file
49
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
tools {
|
||||||
|
maven 'Maven 3'
|
||||||
|
jdk 'Java 8'
|
||||||
|
}
|
||||||
|
options {
|
||||||
|
buildDiscarder(logRotator(artifactNumToKeepStr: '5'))
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage ('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'mvn clean package'
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
success {
|
||||||
|
archiveArtifacts artifacts: 'target/Geyser.jar', fingerprint: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ('Deploy') {
|
||||||
|
when {
|
||||||
|
branch "master"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'mvn javadoc:jar source:jar deploy -DskipTests'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ('Javadoc') {
|
||||||
|
when {
|
||||||
|
branch "master"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'mvn javadoc:javadoc -DskipTests -pl api'
|
||||||
|
step([$class: 'JavadocArchiver',
|
||||||
|
javadocDir: 'api/target/site/apidocs',
|
||||||
|
keepAll: false])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
37
pom.xml
37
pom.xml
|
@ -10,6 +10,7 @@
|
||||||
<name>GeyserMC</name>
|
<name>GeyserMC</name>
|
||||||
<description>Allows for players from Minecraft Bedrock Edition to join Minecraft Java Edition servers.</description>
|
<description>Allows for players from Minecraft Bedrock Edition to join Minecraft Java Edition servers.</description>
|
||||||
<url>https://geysermc.org</url>
|
<url>https://geysermc.org</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<outputName>Geyser</outputName>
|
<outputName>Geyser</outputName>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
@ -17,21 +18,25 @@
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<organization>
|
<organization>
|
||||||
<name>GeyserMC</name>
|
<name>GeyserMC</name>
|
||||||
<url>https://github.com/GeyserMC/Geyser/blob/master/pom.xml</url>
|
<url>https://github.com/GeyserMC/Geyser/blob/master/pom.xml</url>
|
||||||
</organization>
|
</organization>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:https://github.com/GeyserMC/Geyser.git</connection>
|
<connection>scm:git:https://github.com/GeyserMC/Geyser.git</connection>
|
||||||
<developerConnection>scm:git:git@github.com:GeyserMC/Geyser.git</developerConnection>
|
<developerConnection>scm:git:git@github.com:GeyserMC/Geyser.git</developerConnection>
|
||||||
<url>https://github.com/GeyserMC/Geyser</url>
|
<url>https://github.com/GeyserMC/Geyser</url>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>api</module>
|
<module>api</module>
|
||||||
<module>common</module>
|
<module>common</module>
|
||||||
<module>connector</module>
|
<module>connector</module>
|
||||||
<module>plugin</module>
|
<module>plugin</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>CodeMC-repo</id>
|
<id>CodeMC-repo</id>
|
||||||
|
@ -44,10 +49,40 @@
|
||||||
</snapshots>
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>nukkitx-repo</id>
|
<id>nukkitx-release-repo</id>
|
||||||
<url>https://repo.nukkitx.com/maven-releases/</url>
|
<url>https://repo.nukkitx.com/maven-releases/</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>nukkitx-snapshot-repo</id>
|
||||||
|
<url>https://repo.nukkitx.com/maven-snapshots/</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>releases</id>
|
||||||
|
<name>nukkitx-releases</name>
|
||||||
|
<url>https://repo.nukkitx.com/maven-releases</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>snapshots</id>
|
||||||
|
<name>nukkitx-snapshots</name>
|
||||||
|
<url>https://repo.nukkitx.com/maven-snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean install</defaultGoal>
|
<defaultGoal>clean install</defaultGoal>
|
||||||
<resources>
|
<resources>
|
||||||
|
|
Loading…
Reference in a new issue