Skip to content

Commit 79d44f0

Browse files
committed
Minor build fixes
1 parent 9bde9b4 commit 79d44f0

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: ProtocolLib full build lifecycle
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches-ignore:
6+
- 'gh-pages'
7+
pull_request:
68

79
jobs:
810
build:

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ lead to more subtle bugs.
1212

1313
### Resources
1414

15-
* [Spigot Page](https://www.spigotmc.org/resources/protocollib.1997/)
16-
* [Dev Builds](https://ci.dmulloy2.net/job/ProtocolLib)
17-
* [JavaDoc](https://ci.dmulloy2.net/job/ProtocolLib/javadoc/index.html)
15+
* [Spigot Page](https://spigotmc.org/resources/protocollib.1997/)
16+
* [Releases](https://github.com/dmulloy2/ProtocolLib/releases)
17+
* [JavaDoc](https://dmulloy2.net/ProtocolLib/javadoc/)
1818
* [Protocol Wiki](https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Protocol)
1919

2020
### Compilation
@@ -47,7 +47,7 @@ You can also add ProtocolLib as a Maven dependency:
4747
<dependency>
4848
<groupId>net.dmulloy2</groupId>
4949
<artifactId>ProtocolLib</artifactId>
50-
<version>5.3.0</version>
50+
<version>5.4.0</version>
5151
<scope>provided</scope>
5252
</dependency>
5353
</dependencies>
@@ -61,7 +61,7 @@ repositories {
6161
}
6262
6363
dependencies {
64-
compileOnly 'net.dmulloy2:ProtocolLib:5.3.0'
64+
compileOnly 'net.dmulloy2:ProtocolLib:5.4.0'
6565
}
6666
```
6767

build.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
group = "net.dmulloy2"
1515
description = "Provides access to the Minecraft protocol"
1616

17-
val mcVersion = "1.21.7"
17+
val mcVersion = "1.21.8"
1818
val isSnapshot = version.toString().endsWith("-SNAPSHOT")
1919
val buildNumber = System.getenv("BUILD_NUMBER") ?: ""
2020
val isJenkins = buildNumber.isNotEmpty()
@@ -30,10 +30,6 @@ repositories {
3030
url = uri("https://repo.codemc.io/repository/nms/")
3131
}
3232

33-
maven {
34-
url = uri("https://repo.dmulloy2.net/repository/public/")
35-
}
36-
3733
maven {
3834
url = uri("https://hub.spigotmc.org/nexus/content/groups/public/")
3935
}
@@ -133,7 +129,7 @@ mavenPublishing {
133129
publishToMavenCentral()
134130
signAllPublications()
135131

136-
coordinates("${group}", project.name, "${version}")
132+
coordinates("$group", project.name, "$version")
137133

138134
pom {
139135
name.set(project.name)

0 commit comments

Comments
 (0)