mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
83 lines
2.3 KiB
Groovy
83 lines
2.3 KiB
Groovy
import org.ajoberstar.grgit.Grgit
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
|
|
}
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force 'org.ow2.asm:asm:7.0'
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'maven-publish'
|
|
id "org.ajoberstar.grgit" version "3.1.1"
|
|
}
|
|
|
|
group = 'com.github.intellectualsites.plotsquared'
|
|
|
|
def rootVersion = "4"
|
|
def revision = ""
|
|
def buildNumber = ""
|
|
def date = ""
|
|
ext {
|
|
git = Grgit.open(dir: '.git')
|
|
date = git.head().getDate().format("yy.MM.dd")
|
|
revision = "-${git.head().abbreviatedId}"
|
|
parents = git.head().parentIds;
|
|
index = -2042; // Offset to match CI
|
|
for (; parents != null && !parents.isEmpty(); index++) {
|
|
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
|
}
|
|
buildNumber = "${index}"
|
|
}
|
|
|
|
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
|
|
version = String.format("%s.%s", rootVersion, buildNumber)
|
|
|
|
description = rootProject.name
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
group = 'com.github.intellectualsites.plotsquared'
|
|
|
|
clean.doFirst {
|
|
delete "../target"
|
|
}
|
|
|
|
dependencies {
|
|
compile(group: 'com.sk89q.worldedit', name: 'worldedit-core', version: '7.0.0-SNAPSHOT') {
|
|
exclude(module: 'bukkit-classloader-check')
|
|
exclude(module: 'mockito-core')
|
|
exclude(module: 'dummypermscompat')
|
|
}
|
|
//Minecraft uses Guava 21 as of 1.13.
|
|
compile 'com.google.guava:guava:21.0'
|
|
compile("org.projectlombok:lombok:1.18.4")
|
|
compileOnly("org.projectlombok:lombok:1.18.4")
|
|
testCompileOnly("org.projectlombok:lombok:1.18.4")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.4")
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
|
testImplementation "junit:junit:4.12"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "http://maven.sk89q.com/repo/" }
|
|
maven { url "http://repo.maven.apache.org/maven2" }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|