mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 05:48:00 +01:00
Use https
This commit is contained in:
parent
0d1e30e03b
commit
aab5b6a9c4
3 changed files with 7 additions and 11 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
Turns players and mobs into ponies.
|
Turns players and mobs into ponies.
|
||||||
|
|
||||||
http://minelittlepony-mod.com
|
https://minelittlepony-mod.com
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
|
@ -31,6 +31,6 @@ Once you have fabric installed, simply download the MineLittlePony-version.jar f
|
||||||
|
|
||||||
## Installation (Modders):
|
## Installation (Modders):
|
||||||
|
|
||||||
Maven: `http://repo.minelittlepony-mod.com/maven/snapshot`
|
Maven: `https://repo.minelittlepony-mod.com/maven/snapshot`
|
||||||
|
|
||||||
Dependency: `com.minelittlepony:MineLittlePony:4.0.1-1.15`
|
Dependency: `com.minelittlepony:MineLittlePony:4.0.4-1.15.2`
|
||||||
|
|
10
build.gradle
10
build.gradle
|
@ -1,7 +1,3 @@
|
||||||
// Fabric build script
|
|
||||||
// 03/06/2019
|
|
||||||
// https://github.com/FabricMC/fabric-example-mod/blob/master/build.gradle
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id 'fabric-loom' version '0.2.6-SNAPSHOT'
|
id 'fabric-loom' version '0.2.6-SNAPSHOT'
|
||||||
|
@ -45,11 +41,11 @@ minecraft {
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
name = 'minelp'
|
name = 'minelp'
|
||||||
url = 'http://repo.minelittlepony-mod.com/maven/snapshot'
|
url = 'https://repo.minelittlepony-mod.com/maven/snapshot'
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name = 'minelp-release'
|
name = 'minelp-release'
|
||||||
url = 'http://repo.minelittlepony-mod.com/maven/release'
|
url = 'https://repo.minelittlepony-mod.com/maven/release'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,7 +130,7 @@ publishing {
|
||||||
pom {
|
pom {
|
||||||
name = "MineLittlePony"
|
name = "MineLittlePony"
|
||||||
description = "HD Skins support for Minecraft"
|
description = "HD Skins support for Minecraft"
|
||||||
url = "http://minelittlepony-mod.com"
|
url = "https://minelittlepony-mod.com"
|
||||||
licenses {
|
licenses {
|
||||||
license {
|
license {
|
||||||
name = "MIT Public License"
|
name = "MIT Public License"
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://minelittlepony-mod.com/",
|
"homepage": "https://minelittlepony-mod.com/",
|
||||||
"sources": "http://github.com/MineLittlePony/MineLittlePony",
|
"sources": "https://github.com/MineLittlePony/MineLittlePony",
|
||||||
"issues": "https://github.com/MineLittlePony/MineLittlePony/issues"
|
"issues": "https://github.com/MineLittlePony/MineLittlePony/issues"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
Loading…
Reference in a new issue