-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (33 loc) · 833 Bytes
/
build.gradle
File metadata and controls
42 lines (33 loc) · 833 Bytes
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
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'com.gradle.plugin-publish' version '0.12.0'
id 'org.cadixdev.licenser' version '0.6.1'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'uk.jamierocks'
version = '2.0.1'
description = 'ProPatcher is a Gradle plugin for creating .patch files on the go.'
repositories {
mavenCentral()
}
dependencies {
implementation localGroovy()
implementation 'com.cloudbees:diff4j:1.2'
}
license {
header file('HEADER.txt')
}
pluginBundle {
website = 'https://www.cadixdev.org/'
vcsUrl = 'https://github.com/CadixDev/ProPatcher'
description = project.description
tags = ['patches']
plugins {
propatcherPlugin {
id = 'uk.jamierocks.propatcher'
displayName = 'propatcher'
}
}
}