-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
65 lines (54 loc) · 1.73 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
plugins {
id "com.gradle.plugin-publish" version "0.10.1"
id "java-gradle-plugin"
id "org.jetbrains.kotlin.jvm" version "1.3.21"
id "idea"
id "com.github.kamatama41.git-release" version "0.3.0"
}
repositories {
jcenter()
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
group = "com.github.kamatama41"
configurations {
[compileClasspath, testCompileClasspath].each {
it.resolutionStrategy.activateDependencyLocking()
}
}
dependencies {
implementation gradleApi()
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "com.google.guava:guava:20.0"
implementation "com.github.jruby-gradle:jruby-gradle-plugin:1.5.0"
testImplementation gradleTestKit()
testImplementation "junit:junit:4.12"
testImplementation "org.eclipse.jgit:org.eclipse.jgit.junit:4.5.0.201609210915-r"
}
gitRelease {
groupId = group
artifactId = "gradle-embulk-plugin"
repoUri = "[email protected]:kamatama41/maven-repository.git"
repoDir = file("${System.getProperty("user.home")}/gh-maven-repository")
}
gradlePlugin {
automatedPublishing = false
plugins {
embulkPlugin {
id = "${group}.embulk"
implementationClass = "com.github.kamatama41.gradle.embulk.EmbulkPlugin"
}
}
}
pluginBundle {
website = "https://github.com/kamatama41/gradle-embulk-plugin"
vcsUrl = "https://github.com/kamatama41/gradle-embulk-plugin"
description = "A Gradle plugin that provides some helpful tasks for your Embulk plugin's development."
tags = ["embulk"]
plugins {
embulkPlugin {
displayName = "Gradle Embulk plugin"
}
}
}
afterReleaseBuild.dependsOn publishPlugins