Skip to content

Commit fdf315b

Browse files
committed
Update URLs to HTTPS
Finally got around to it on my ci and nexus
1 parent f46bd56 commit fdf315b

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22

33
Certain tasks are impossible to perform with the standard Bukkit API, and may require
44
working with and even modify Minecraft directly. A common technique is to modify incoming
5-
and outgoing [packets](http://www.wiki.vg/Protocol), or inject custom packets into the
5+
and outgoing [packets](https://www.wiki.vg/Protocol), or inject custom packets into the
66
stream. This is quite cumbersome to do, however, and most implementations will break
77
as soon as a new version of Minecraft has been released, mostly due to obfuscation.
88

99
Critically, different plugins that use this approach may _hook_ into the same classes,
1010
with unpredictable outcomes. More than often this causes plugins to crash, but it may also
1111
lead to more subtle bugs.
1212

13-
Currently maintained by dmulloy2 on behalf of [Spigot](http://www.spigotmc.org/).
13+
Currently maintained by dmulloy2 on behalf of [Spigot](https://www.spigotmc.org/).
1414

1515
### Resources
1616

17-
* [Resource Page](http://www.spigotmc.org/resources/protocollib.1997/)
18-
* [Dev Builds](http://ci.dmulloy2.net/job/ProtocolLib)
19-
* [JavaDoc](http://ci.dmulloy2.net/job/ProtocolLib/javadoc)
17+
* [Resource Page](https://www.spigotmc.org/resources/protocollib.1997/)
18+
* [Dev Builds](https://ci.dmulloy2.net/job/ProtocolLib)
19+
* [JavaDoc](https://ci.dmulloy2.net/job/ProtocolLib/javadoc)
2020

2121
### Compilation
2222

23-
ProtocolLib is built with Maven and requires Spigot and SpigotAPI, which can be found [here](http://www.spigotmc.org/wiki/buildtools/).
23+
ProtocolLib is built with Maven and requires Spigot and SpigotAPI, which can be found [here](https://www.spigotmc.org/wiki/buildtools/).
2424

2525
### A new API
2626

@@ -44,7 +44,7 @@ You can also add ProtocolLib as a Maven dependency:
4444
<repositories>
4545
<repository>
4646
<id>dmulloy2-repo</id>
47-
<url>http://repo.dmulloy2.net/nexus/repository/public/</url>
47+
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
4848
</repository>
4949
...
5050
</repositories>
@@ -53,7 +53,7 @@ You can also add ProtocolLib as a Maven dependency:
5353
<dependency>
5454
<groupId>com.comphenix.protocol</groupId>
5555
<artifactId>ProtocolLib</artifactId>
56-
<version>4.4.0</version>
56+
<version>4.5.0</version>
5757
</dependency>
5858
</dependencies>
5959
````
@@ -62,11 +62,11 @@ Or use the maven dependency with gradle:
6262

6363
```gradle
6464
repositories {
65-
maven { url "http://repo.dmulloy2.net/nexus/repository/public/" }
65+
maven { url "https://repo.dmulloy2.net/nexus/repository/public/" }
6666
}
6767
6868
dependencies {
69-
compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.4.0";
69+
compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.5.0";
7070
}
7171
```
7272

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>4.5.0-SNAPSHOT</version>
88

99
<description>Provides read/write access to the Minecraft protocol.</description>
10-
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
10+
<url>https://github.com/dmulloy2/ProtocolLib</url>
1111
<packaging>jar</packaging>
1212
<inceptionYear>2012</inceptionYear>
1313

@@ -251,18 +251,18 @@
251251
<distributionManagement>
252252
<repository>
253253
<id>dmulloy2-releases</id>
254-
<url>http://repo.dmulloy2.net/nexus/repository/releases/</url>
254+
<url>https://repo.dmulloy2.net/nexus/repository/releases/</url>
255255
</repository>
256256
<snapshotRepository>
257257
<id>dmulloy2-snapshots</id>
258-
<url>http://repo.dmulloy2.net/nexus/repository/snapshots/</url>
258+
<url>https://repo.dmulloy2.net/nexus/repository/snapshots/</url>
259259
</snapshotRepository>
260260
</distributionManagement>
261261

262262
<repositories>
263263
<repository>
264264
<id>dmulloy2-repo</id>
265-
<url>http://repo.dmulloy2.net/nexus/repository/public/</url>
265+
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
266266
</repository>
267267
<repository>
268268
<id>spigot-repo</id>

0 commit comments

Comments
 (0)