Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 924 Bytes

java.md

File metadata and controls

28 lines (20 loc) · 924 Bytes
parent
Required tools

Required tools for Java

Initializing target projects

Before you can compile and run the target project, you will need to initialize it. After initializing the test project, you will need to add references to the abstraction and the authentication, http, serialization packages from the GitHub feed.

Execute the following command in the directory you want to initialize the project in.

gradle init
# Select a console application

Edit utilities/build.gradle to add the following dependencies.

api 'com.google.code.findbugs:jsr305:3.0.2'
api 'com.azure:azure-identity:1.2.5'
api 'com.squareup.okhttp3:okhttp:4.9.1'
api 'com.google.code.gson:gson:2.8.6'