Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ dependencies {

compileOnly('org.projectlombok:lombok:1.18.24')

implementation("com.devcycle:java-server-sdk:1.0.5")
// The line below makes the Example App use the production build of the Java Server SDK
// implementation("com.devcycle:java-server-sdk:1.0.7")

// The line below makes the Example App use the local version of the Java Server SDK
// Run `./gradlew build` in the root directory (`cd .. && ./gradlew build`) to build the local version of the SDK
implementation project(':java-server-sdk')

testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
Expand Down
2 changes: 1 addition & 1 deletion example/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
263 changes: 159 additions & 104 deletions example/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading