Skip to content

Commit d643ac7

Browse files
committed
Fix dependencies
1 parent ecb7012 commit d643ac7

File tree

2 files changed

+4
-43
lines changed

2 files changed

+4
-43
lines changed

build.gradle

+4-42
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,8 @@
1-
//buildscript {
2-
// repositories {
3-
// mavenCentral()
4-
// gradlePluginPortal()
5-
// // https://repo1.maven.org/maven2/
6-
// maven {
7-
// url "https://repo1.maven.org/maven2/"
8-
// }
9-
// maven { url 'https://nexus.web.cern.ch/nexus/content/repositories/public/' }
10-
// }
11-
//}
12-
//
13-
//plugins {
14-
// // id "com.jfrog.bintray" version "1.8.5"
15-
// // id "com.github.jruby-gradle.base" version "2.0.2"
16-
//// id "com.github.jruby-gradle.base" version "1.7.0"
17-
// id "java"
18-
// id "scala"
19-
// id "checkstyle"
20-
//// id "com.github.spotbugs" version "3.0.1"
21-
// id "org.sonarqube" version "3.5.0.2730"
22-
//}
23-
//// import com.github.jrubygradle.JRubyExec
24-
//repositories {
25-
// mavenCentral()
26-
// maven { url 'https://nexus.web.cern.ch/nexus/content/repositories/public/' }
27-
//// maven {
28-
//// url "http://dl.bintray.com/embulk-input-s3/maven"
29-
//// }
30-
//}
311
buildscript {
322
repositories {
333
mavenCentral()
344
gradlePluginPortal()
35-
maven {
36-
url "https://repo1.maven.org/maven2/"
37-
}
5+
maven {url "https://repo1.maven.org/maven2/"}
386
maven { url 'https://nexus.web.cern.ch/nexus/content/repositories/public/' }
397
}
408
}
@@ -66,8 +34,6 @@ group = "com.example"
6634
description = "An Embulk plugin to load example data."
6735
def EMBULK_VERSION = "0.11.5"
6836

69-
//sourceCompatibility = 1.8
70-
//targetCompatibility = 1.8
7137
java {
7238
toolchain {
7339
languageVersion = JavaLanguageVersion.of(8)
@@ -97,15 +63,11 @@ dependencies {
9763
implementation 'com.google.guava:guava:24.1-jre'
9864

9965
testImplementation 'org.jmockit:jmockit:1.38'
100-
// testImplementation "junit:junit:4.+"
10166
testImplementation 'org.hamcrest:hamcrest-core:2.2'
102-
testImplementation 'org.testng:testng:6.14.2'
103-
// testImplementation "org.embulk:embulk-core:$EMBULK_VERSION:tests"
104-
// testImplementation "org.embulk:embulk-standards:$EMBULK_VERSION"
67+
testImplementation "org.testng:testng:6.14.2"
10568
testImplementation "org.embulk:embulk-spi:0.11"
106-
testImplementation "org.embulk:embulk-core:0.11.0"
107-
testImplementation "org.embulk:embulk-deps:0.11.0"
108-
testImplementation "org.embulk:embulk-junit4:0.11.0"
69+
testImplementation "org.embulk:embulk-core:$EMBULK_VERSION"
70+
testImplementation "org.embulk:embulk-deps:$EMBULK_VERSION"
10971
}
11072

11173
sourceSets {

src/main/scala/org/embulk/output/orc/TimestampColumnOption.scala

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import java.util
44

55
import com.google.common.base.Optional
66
import org.embulk.config.{Config, ConfigDefault, Task}
7-
// import org.embulk.spi.time.TimestampFormatter
87
import org.joda.time.DateTimeZone
98

109
/*

0 commit comments

Comments
 (0)