TF-PlotSquared/build.gradle

88 lines
2.5 KiB
Groovy
Raw Normal View History

import org.ajoberstar.grgit.Grgit
2016-02-23 04:11:28 +00:00
buildscript {
repositories {
mavenCentral()
2018-08-10 15:01:10 +00:00
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
2016-02-23 04:11:28 +00:00
jcenter()
}
2016-07-06 03:39:38 +00:00
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
2016-02-23 04:11:28 +00:00
}
2018-01-25 06:46:41 +00:00
configurations.all {
resolutionStrategy {
2019-04-23 21:27:32 +00:00
force 'org.ow2.asm:asm:7.1'
2018-01-25 06:46:41 +00:00
}
}
2016-02-23 04:11:28 +00:00
}
2018-12-17 13:16:53 +00:00
plugins {
id 'maven-publish'
id "org.ajoberstar.grgit" version "3.1.1"
2018-12-17 13:16:53 +00:00
}
2019-01-17 14:31:18 +00:00
group = 'com.github.intellectualsites.plotsquared'
2016-07-06 03:39:38 +00:00
def rootVersion = "4"
def revision = ""
def buildNumber = ""
def date = ""
2016-05-19 17:32:35 +00:00
ext {
git = Grgit.open(dir: '.git')
date = git.head().getDate().format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
2019-04-20 15:26:31 +00:00
if (project.hasProperty('buildnumber')) {
buildNumber = "$buildnumber"
} else {
index = -2042; // Offset to match CI
for (; parents != null && !parents.isEmpty(); index++) {
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
}
buildNumber = "${index}"
}
2016-05-19 17:32:35 +00:00
}
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
version = String.format("%s.%s", rootVersion, buildNumber)
description = rootProject.name
2016-02-23 04:11:28 +00:00
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
2016-07-01 21:13:49 +00:00
apply plugin: 'com.github.johnrengelman.shadow'
2019-04-05 16:39:16 +00:00
group = 'com.github.intellectualsites.plotsquared'
clean.doFirst {
delete "../target"
}
2016-02-23 04:11:28 +00:00
dependencies {
2019-04-29 14:49:58 +00:00
implementation('com.sk89q.worldedit:worldedit-core:7.0.0-SNAPSHOT') {
2016-02-23 04:11:28 +00:00
exclude(module: 'bukkit-classloader-check')
exclude(module: 'mockito-core')
exclude(module: 'dummypermscompat')
2016-02-23 04:11:28 +00:00
}
//Minecraft uses Guava 21 as of 1.13.
compile 'com.google.guava:guava:21.0'
2019-04-29 14:49:58 +00:00
compileOnly 'org.jetbrains:annotations:17.0.0'
2019-04-23 21:27:32 +00:00
compile("org.projectlombok:lombok:1.18.6")
compileOnly("org.projectlombok:lombok:1.18.6")
testCompileOnly("org.projectlombok:lombok:1.18.6")
annotationProcessor("org.projectlombok:lombok:1.18.6")
testAnnotationProcessor("org.projectlombok:lombok:1.18.6")
testImplementation "junit:junit:4.12"
2016-02-23 04:11:28 +00:00
}
2019-04-20 15:26:31 +00:00
2016-02-23 04:11:28 +00:00
repositories {
mavenCentral()
2018-08-10 15:01:10 +00:00
maven { url "http://maven.sk89q.com/repo/" }
maven { url "http://repo.maven.apache.org/maven2" }
2019-03-18 18:49:22 +00:00
maven { url 'https://jitpack.io' }
2016-02-23 04:11:28 +00:00
}
2018-08-10 15:01:10 +00:00
}