-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
58 lines (51 loc) · 1.82 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenCentral()
maven {
url = uri('https://repository.apache.org/content/repositories/snapshots/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.apache.beam:beam-sdks-java-core:2.27.0'
implementation 'org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.27.0'
implementation 'com.google.api-client:google-api-client:1.30.10'
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20200719-1.30.10'
implementation 'com.google.http-client:google-http-client:1.34.0'
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20200713-1.30.10'
implementation 'joda-time:joda-time:2.10.5'
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'org.hamcrest:hamcrest-core:2.1'
implementation 'org.hamcrest:hamcrest-library:2.1'
implementation 'junit:junit:4.13-beta-3'
implementation 'org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.27.0'
runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.25'
runtimeOnly 'org.apache.beam:beam-runners-google-cloud-dataflow-java:2.27.0'
testImplementation 'org.apache.beam:beam-runners-direct-java:2.27.0'
testImplementation 'org.mockito:mockito-core:3.0.0'
}
group = 'org.omar'
version = '0.1'
description = 'RandomPipes'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
task execute (type:JavaExec) {
main = System.getProperty("mainClass")
classpath = sourceSets.main.runtimeClasspath
systemProperties System.getProperties()
args System.getProperty("exec.args", "").split()
}