mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
deploy to travis
This commit is contained in:
parent
cc1bbbbd7b
commit
39b54cbc00
3 changed files with 88 additions and 54 deletions
13
.travis.yml
13
.travis.yml
|
@ -1,11 +1,8 @@
|
|||
language: java
|
||||
install: true
|
||||
jdk:
|
||||
- openjdk8
|
||||
before_cache:
|
||||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
||||
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.gradle/caches/
|
||||
- $HOME/.gradle/wrapper/
|
||||
deploy:
|
||||
provider: script
|
||||
script: ./gradlew build publish
|
||||
on:
|
||||
branch: master
|
||||
|
|
87
build.gradle
87
build.gradle
|
@ -1,32 +1,17 @@
|
|||
plugins {
|
||||
id 'fabric-loom' version '0.2.2-SNAPSHOT'
|
||||
id 'org.ajoberstar.grgit' version '3.1.1'
|
||||
id 'fabric-loom' version '0.2.4-SNAPSHOT'
|
||||
id 'com.github.johnrengelman.plugin-shadow' version '2.0.3'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
|
||||
ext {
|
||||
if (grgit == null) {
|
||||
revision = "nogit"
|
||||
} else {
|
||||
revision = "${grgit.log().size()}-${grgit.head().abbreviatedId}"
|
||||
if (file('.git/shallow').exists()) {
|
||||
// don't clone with --depth
|
||||
revision = "-1-shallow"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
version = "${project.minecraft_version}.${project.version}"
|
||||
version = "${project.minecraft_version}-${project.version}"
|
||||
|
||||
if (project.release != 'RELEASE') {
|
||||
version += "-${project.release}"
|
||||
}
|
||||
if (project.release == 'SNAPSHOT') {
|
||||
version += "-${project.revision}"
|
||||
}
|
||||
|
||||
group = project.group
|
||||
description = project.displayname
|
||||
|
@ -38,8 +23,8 @@ minecraft {
|
|||
|
||||
repositories {
|
||||
maven {
|
||||
name = 'Jit'
|
||||
url = 'https://jitpack.io'
|
||||
name = 'minelp'
|
||||
url = 'http://repo.minelittlepony-mod.com/maven/snapshot'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -51,12 +36,12 @@ dependencies {
|
|||
|
||||
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
|
||||
modCompile "com.github.MineLittlePony:Kirin:${project.kirin_version}"
|
||||
include "com.github.MineLittlePony:Kirin:${project.kirin_version}"
|
||||
modCompile "com.minelittlepony:Kirin:${project.kirin_version}"
|
||||
include "com.minelittlepony:Kirin:${project.kirin_version}"
|
||||
|
||||
// TODO: HD Skins can be made optional later
|
||||
modCompile "com.github.MineLittlePony:HDSkins:${project.hd_skins_version}"
|
||||
include "com.github.MineLittlePony:HDSkins:${project.hd_skins_version}"
|
||||
modCompile "com.minelittlepony:HDSkins:${project.hd_skins_version}"
|
||||
include "com.minelittlepony:HDSkins:${project.hd_skins_version}"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
@ -77,7 +62,6 @@ tasks.withType(JavaCompile) {
|
|||
options.encoding = "UTF-8"
|
||||
}
|
||||
|
||||
|
||||
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||
classifier = "sources"
|
||||
from sourceSets.main.allSource
|
||||
|
@ -100,3 +84,56 @@ task copyBGPones(type: Copy) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
afterEvaluate {
|
||||
artifact(remapJar.output)
|
||||
}
|
||||
artifact(sourcesJar) {
|
||||
builtBy remapSourcesJar
|
||||
}
|
||||
|
||||
pom {
|
||||
name = "MineLittlePony"
|
||||
description = "HD Skins support for Minecraft"
|
||||
url = "http://minelittlepony-mod.com"
|
||||
licenses {
|
||||
license {
|
||||
name = "MIT Public License"
|
||||
url = "https://tlo.mit.edu/learn-about-intellectual-property/software-and-open-source-licensing"
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
id = "killjoy1221"
|
||||
name = "Matthew Messinger"
|
||||
email = "mattmess1221@gmail.com"
|
||||
}
|
||||
developer {
|
||||
id = "sollace"
|
||||
}
|
||||
}
|
||||
scm {
|
||||
connection = 'scm:git:git://github.com/MineLittlePony/MineLittlePony.git'
|
||||
developerConnection = 'scm:git:ssh://github.com/MineLittlePony/MineLittlePony.git'
|
||||
url = 'https://github.com/MineLittlePony/MineLittlePony'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name = "MineLittlePony"
|
||||
def mvn = 's3://repo.minelittlepony-mod.com/maven'
|
||||
url = release == 'SNAPSHOT' ? "$mvn/snapshot" : "$mvn/release"
|
||||
|
||||
credentials(AwsCredentials) {
|
||||
accessKey = System.env.ACCESS_KEY
|
||||
secretKey = System.env.SECRET_KEY
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -18,5 +18,5 @@ org.gradle.daemon=false
|
|||
|
||||
# Dependencies
|
||||
fabric_version=0.3.0+
|
||||
kirin_version=b69d6643c8
|
||||
hd_skins_version=b4327b9cf9
|
||||
kirin_version=1.14.2-1.0.1-SNAPSHOT
|
||||
hd_skins_version=1.14.2-5.0.1-SNAPSHOT
|
||||
|
|
Loading…
Reference in a new issue