-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (19 loc) · 1.04 KB
/
build.gradle
File metadata and controls
25 lines (19 loc) · 1.04 KB
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
apply plugin: 'java'
dependencies {
implementation project(':core-api')
implementation project(':core-httpclient-impl')
// implementation group: 'com.google.code.gson', name: 'gson', version: gsonVersion
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.17.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: httpClientVersion
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: log4jVersion
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: log4jVersion
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: log4jVersion
testImplementation group: 'junit', name: 'junit', version: junitVersion
}
task runExample(type: JavaExec) {
systemProperties System.properties
main "com.optimizely.Example"
classpath sourceSets.test.runtimeClasspath
}