forked from palantir/gradle-git-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
96 lines (81 loc) · 2.78 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.2.1'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:1.1.0'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.3.0'
}
}
plugins {
id 'com.gradle.plugin-publish' version '0.15.0'
id 'com.palantir.git-version' version '0.12.3'
id 'com.palantir.idea-test-fix' version '0.1.0'
id 'com.palantir.baseline' version '3.63.3'
id 'com.palantir.consistent-versions' version '1.30.0'
id 'java-gradle-plugin'
id 'groovy'
}
apply plugin: 'com.palantir.external-publish-jar'
group 'com.palantir.gradle.gitversion'
version System.env.CIRCLE_TAG ?: gitVersion()
repositories {
mavenCentral()
jcenter()
}
sourceSets {
groovy
main.output.dir groovy.output
}
dependencies {
implementation gradleApi()
implementation 'org.eclipse.jgit:org.eclipse.jgit'
implementation 'com.google.guava:guava'
groovyImplementation localGroovy()
groovyImplementation gradleApi()
// Access code written in groovy from src/main/java sources
runtimeOnly configurations.groovyRuntimeClasspath
implementation configurations.groovyCompile
implementation sourceSets.groovy.output
annotationProcessor 'org.immutables:value'
compileOnly 'org.immutables:value::annotations'
testImplementation gradleTestKit()
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") {
because 'allows JUnit 3 and JUnit 4 tests to run'
}
testImplementation 'org.assertj:assertj-core'
testImplementation('org.spockframework:spock-core') {
exclude module: 'groovy-all'
}
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
}
java {
sourceCompatibility JavaVersion.VERSION_1_8
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Werror', '-Xlint:deprecation']
}
pluginBundle {
website = 'https://github.com/palantir/gradle-git-version'
vcsUrl = 'https://github.com/palantir/gradle-git-version'
description = 'Gradle Git-Version is a plugin that generates a version for use with Gradle by calling git-describe.'
tags = ['git', 'version']
plugins {
gitVersionPlugin {
id = 'com.palantir.git-version'
displayName = 'Palantir Gradle Git-Version'
}
}
allprojects {
apply plugin: 'com.palantir.java-format'
}
}
// Configure the publishPlugins task
publishPlugins.onlyIf { System.env.CIRCLE_TAG }
tasks.publish.dependsOn publishPlugins
project.ext.'gradle.publish.key' = System.env["GRADLE_KEY"]
project.ext.'gradle.publish.secret' = System.env["GRADLE_SECRET"]