-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (58 loc) · 1.83 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
repositories {
mavenLocal()
maven {
url = uri('https://repository.apache.org/content/repositories/snapshots/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
mavenCentral()
}
dependencies {
implementation 'org.apache.beam:beam-sdks-java-core:2.35.0'
implementation 'org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.35.0'
implementation 'org.apache.velocity:velocity:1.7'
implementation 'com.google.api-client:google-api-client:1.32.2'
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1'
implementation 'com.google.http-client:google-http-client:1.40.1'
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1'
implementation 'joda-time:joda-time:2.10.13'
implementation 'org.slf4j:slf4j-api:1.7.32'
implementation 'org.hamcrest:hamcrest-core:2.2'
implementation 'org.hamcrest:hamcrest-library:2.2'
implementation 'junit:junit:4.13.2'
runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.32'
runtimeOnly 'org.apache.beam:beam-runners-direct-java:2.35.0'
runtimeOnly 'org.apache.beam:beam-runners-portability-java:2.35.0'
testImplementation 'org.mockito:mockito-core:4.2.0'
}
group = 'org.example'
version = '0.1'
description = 'autoxlang'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
compileJava {
options.compilerArgs << '-parameters'
}
shadowJar {
mergeServiceFiles()
}
jar {
manifest {
attributes 'Main-Class': 'org.apache.beam.sdk.expansion.service.ExpansionService'
}
}