-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·101 lines (88 loc) · 2.96 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
97
98
99
100
101
plugins {
id "java-library"
id "org.embulk.embulk-plugins" version "0.5.5"
id "maven-publish"
id "signing"
}
group = "io.github.hishidama.embulk"
version = "1.3.0"
description = "Tsurugi DB output plugin for Embulk"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
withJavadocJar()
withSourcesJar()
}
tasks.withType(JavaCompile) { task ->
task.options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
}
embulkPlugin {
mainClass = "org.embulk.output.tsurugidb.TsurugiOutputPlugin"
category = "output"
type = "tsurugidb"
}
dependencies {
compileOnly "org.embulk:embulk-api:0.10.43"
compileOnly "org.embulk:embulk-spi:0.11"
compile "org.embulk:embulk-util-config:0.3.3"
compile "org.embulk:embulk-util-timestamp:0.2.2"
compile "org.embulk:embulk-util-json:0.2.2"
compile "org.embulk:embulk-util-retryhelper:0.8.2"
def tsubakuroVersion = '1.8.0'
compile "com.tsurugidb.tsubakuro:tsubakuro-connector:${tsubakuroVersion}"
compile "com.tsurugidb.tsubakuro:tsubakuro-kvs:${tsubakuroVersion}"
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
testCompile "org.embulk:embulk-deps:0.11.0"
testCompile "org.embulk:embulk-junit4:0.11.0"
testCompile "io.github.hishidama.embulk:hm-embulk-tester:0.1.+"
testImplementation "ch.qos.logback:logback-classic:1.4.14"
}
test {
systemProperty "endpoint", findProperty("endpoint")
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'embulk-output-tsurugidb'
from components.java
pom {
name = 'Tsurugi DB output plugin for Embulk'
description = 'Inserts or updates records to a table.'
url = 'https://github.com/hishidama/embulk-output-tsurugidb'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'hishidama'
}
}
scm {
connection = '[email protected]:hishidama/embulk-output-tsurugidb.git'
developerConnection = '[email protected]:hishidama/embulk-output-tsurugidb.git'
url = 'https://github.com/hishidama/embulk-output-tsurugidb'
}
}
}
}
repositories {
maven {
url = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username findProperty('sonatypeUsername')
password findProperty('sonatypePassword')
}
}
}
}
signing {
required { gradle.taskGraph.hasTask("publishMavenJavaPublicationToMavenRepository") }
sign publishing.publications.mavenJava
}