Skip to content

Commit 085d54c

Browse files
committed
Merge branch 'main' of https://github.com/Unleash/unleash-java-sdk into write-backup-file
2 parents ed2d85a + 780b8ae commit 085d54c

7 files changed

Lines changed: 417 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
plugins {
2+
java
3+
application
4+
}
5+
6+
application {
7+
mainClass.set("io.getunleash.example.StreamingExample")
8+
}
9+
10+
repositories {
11+
mavenCentral()
12+
mavenLocal()
13+
}
14+
15+
dependencies {
16+
implementation("io.getunleash:unleash-client-java:11.1.0")
17+
implementation("com.launchdarkly:okhttp-eventsource:4.1.1")
18+
implementation("ch.qos.logback:logback-classic:1.5.18")
19+
}
58.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

examples/streaming-example/gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/streaming-example/gradlew.bat

Lines changed: 89 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)