mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Update blockus addon
This commit is contained in:
parent
0f40df445e
commit
2ccd181ef0
3 changed files with 34 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 4776aab6124c091ed7e7d9d0b6939099c502c474
|
Subproject commit 84c001e280e013025cdbd75e0aad74c594c4c6be
|
32
build.gradle
32
build.gradle
|
@ -5,6 +5,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
plugins {
|
plugins {
|
||||||
id 'fabric-loom' version '1.7-SNAPSHOT'
|
id 'fabric-loom' version '1.7-SNAPSHOT'
|
||||||
|
id 'maven-publish'
|
||||||
id 'com.modrinth.minotaur' version '2.+'
|
id 'com.modrinth.minotaur' version '2.+'
|
||||||
id 'org.ajoberstar.reckon' version '0.13.1'
|
id 'org.ajoberstar.reckon' version '0.13.1'
|
||||||
}
|
}
|
||||||
|
@ -167,3 +168,34 @@ modrinth {
|
||||||
optional.project 'fRiHVvU7'
|
optional.project 'fRiHVvU7'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
maven(MavenPublication) {
|
||||||
|
from components.java
|
||||||
|
|
||||||
|
pom {
|
||||||
|
name = "Unicopia"
|
||||||
|
description = "Pony abilities mod for minecraft"
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name = "MIT Public License"
|
||||||
|
url = "https://tlo.mit.edu/learn-about-intellectual-property/software-and-open-source-licensing"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id = "sollace"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scm {
|
||||||
|
connection = 'scm:git:git://github.com/Sollace/Unicopia.git'
|
||||||
|
developerConnection = 'scm:git:ssh://github.com/Sollace/Unicopia.git'
|
||||||
|
url = 'https://github.com/Sollace/Unicopia'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,4 +12,4 @@ pluginManagement {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rootProject.name = 'Unicopia'
|
rootProject.name = 'unicopia'
|
||||||
|
|
Loading…
Reference in a new issue