-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (26 loc) · 793 Bytes
/
Copy pathbuild.gradle
File metadata and controls
33 lines (26 loc) · 793 Bytes
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
plugins {
id "java"
id "application"
}
repositories {
mavenCentral()
// Before LaunchDarkly release artifacts get synced to Maven Central they are here along with snapshots:
maven { url "https://oss.sonatype.org/content/groups/public/" }
}
allprojects {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
application {
mainClassName = "Hello"
}
ext.versions = [
"sdk": "5.+",
"slf4j": "1.7.22"
]
dependencies {
implementation "com.launchdarkly:launchdarkly-java-server-sdk:${versions.sdk}"
// Adding slf4j-simple enables the basic console logging implementation of SLF4J. Most real
// applications will use one of the other SLF4J adapters. See: http://www.slf4j.org/
implementation "org.slf4j:slf4j-simple:${versions.slf4j}"
}