diff --git a/Jenkinsfile b/Jenkinsfile
index 1a93391d..96b189f2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -24,8 +24,29 @@ pipeline {
when {
branch "master"
}
+
steps {
- sh 'mvn javadoc:jar source:jar deploy -DskipTests'
+ rtMavenDeployer(
+ id: "maven-deployer",
+ serverId: "opencollab-artifactory",
+ releaseRepo: "maven-releases",
+ snapshotRepo: "maven-snapshots"
+ )
+ rtMavenResolver(
+ id: "maven-resolver",
+ serverId: "opencollab-artifactory",
+ releaseRepo: "release",
+ snapshotRepo: "snapshot"
+ )
+ rtMavenRun(
+ pom: 'pom.xml',
+ goals: 'javadoc:jar source:jar install -DskipTests',
+ deployerId: "maven-deployer",
+ resolverId: "maven-resolver"
+ )
+ rtPublishBuildInfo(
+ serverId: "opencollab-artifactory"
+ )
}
}
}
diff --git a/bootstrap/bungeecord/pom.xml b/bootstrap/bungeecord/pom.xml
index 44b28e93..124967b0 100644
--- a/bootstrap/bungeecord/pom.xml
+++ b/bootstrap/bungeecord/pom.xml
@@ -6,15 +6,15 @@
org.geysermc
bootstrap-parent
- 1.1.0
- ../
+ 1.2.0-SNAPSHOT
bootstrap-bungeecord
+
org.geysermc
connector
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml
index d9bac67d..a5ad53cb 100644
--- a/bootstrap/pom.xml
+++ b/bootstrap/pom.xml
@@ -6,12 +6,11 @@
org.geysermc
geyser-parent
- parent
- ../
+ 1.2.0-SNAPSHOT
bootstrap-parent
- 1.1.0
pom
+
spigot-public
diff --git a/bootstrap/spigot/pom.xml b/bootstrap/spigot/pom.xml
index 067b446a..f3b9cf88 100644
--- a/bootstrap/spigot/pom.xml
+++ b/bootstrap/spigot/pom.xml
@@ -6,15 +6,15 @@
org.geysermc
bootstrap-parent
- 1.1.0
- ../
+ 1.2.0-SNAPSHOT
bootstrap-spigot
+
org.geysermc
connector
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/bootstrap/sponge/pom.xml b/bootstrap/sponge/pom.xml
index 132f3817..e6ce8f85 100644
--- a/bootstrap/sponge/pom.xml
+++ b/bootstrap/sponge/pom.xml
@@ -6,15 +6,15 @@
org.geysermc
bootstrap-parent
- 1.1.0
- ../
+ 1.2.0-SNAPSHOT
bootstrap-sponge
+
org.geysermc
connector
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/bootstrap/standalone/pom.xml b/bootstrap/standalone/pom.xml
index 07458f73..831239f6 100644
--- a/bootstrap/standalone/pom.xml
+++ b/bootstrap/standalone/pom.xml
@@ -6,15 +6,15 @@
org.geysermc
bootstrap-parent
- 1.1.0
- ../
+ 1.2.0-SNAPSHOT
bootstrap-standalone
+
org.geysermc
connector
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/bootstrap/velocity/pom.xml b/bootstrap/velocity/pom.xml
index babb9a3e..86de99ba 100644
--- a/bootstrap/velocity/pom.xml
+++ b/bootstrap/velocity/pom.xml
@@ -6,15 +6,15 @@
org.geysermc
bootstrap-parent
- 1.1.0
- ../
+ 1.2.0-SNAPSHOT
bootstrap-velocity
+
org.geysermc
connector
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/common/pom.xml b/common/pom.xml
index 85dde12c..32c4b187 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -6,11 +6,10 @@
org.geysermc
geyser-parent
- parent
- ../
+ 1.2.0-SNAPSHOT
common
- 1.1.0
+
com.google.code.gson
diff --git a/connector/pom.xml b/connector/pom.xml
index d837f057..8382fd9a 100644
--- a/connector/pom.xml
+++ b/connector/pom.xml
@@ -6,16 +6,15 @@
org.geysermc
geyser-parent
- parent
- ../
+ 1.2.0-SNAPSHOT
connector
- 1.1.0
+
org.geysermc
common
- 1.1.0
+ 1.2.0-SNAPSHOT
compile
diff --git a/pom.xml b/pom.xml
index 345933ac..011b320f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
org.geysermc
geyser-parent
- parent
+ 1.2.0-SNAPSHOT
pom
Geyser
Allows for players from Minecraft Bedrock Edition to join Minecraft Java Edition servers.
@@ -71,19 +71,6 @@
-
-
- releases
- opencollab-releases
- https://repo.opencollab.dev/maven-releases
-
-
- snapshots
- opencollab-snapshots
- https://repo.opencollab.dev/maven-snapshots
-
-
-
org.projectlombok