-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (40 loc) · 1.13 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
plugins {
id "com.gradle.plugin-publish" version "0.10.1"
id "java-gradle-plugin"
}
group 'io.forgo.plugins.gradle'
version '1.1'
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
sourceCompatibility = 1.8
ext {
junitVersion = '4.12'
}
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
testCompile group: 'junit', name: 'junit', version: "${project.junitVersion}"
}
gradlePlugin {
plugins {
keystorePlugin {
id = 'io.forgo.keystoreplugin'
implementationClass = 'io.forgo.plugins.gradle.KeystorePlugin'
}
}
}
pluginBundle {
website = 'https://github.com/forgo/keystore-gradle-plugin'
vcsUrl = 'https://github.com/forgo/keystore-gradle-plugin'
description = 'Plugin to simplify creation of JKS keystores via a key, cert, and an intermediate PKCS12 keystore.'
tags = ['keystore', 'jks', 'jkcs12', 'cert', 'key', 'credentials', 'password', 'forgo.io']
plugins {
keystorePlugin {
// id is captured from java-gradle-plugin configuration
displayName = 'Keystore Gradle Plugin'
}
}
}