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
4 changes: 2 additions & 2 deletions .ort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ excludes:
reason: "EXAMPLE_OF"
comment: "The project contains an example how to implement AAA SDK in a client."
scopes:
- name: "provided"
- pattern: "provided"
reason: "PROVIDED_DEPENDENCY_OF"
comment: "Packages provided at runtime by the JDK or container only."
- name: "test"
- pattern: "test"
reason: "TEST_DEPENDENCY_OF"
comment: "Packages for testing only."
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,15 @@ Server, for use with HERE Services.
```
HERE OAuth Client Examples
------
Example usage of the HERE OAuth Client library; these are tutorials intended to be adapted into or
inform design of applications
Example usage of the HERE OAuth Client library; these are tutorials intended to be
adapted into or inform design of applications.

Specify the version of the HERE OAuth Client library to include in your code by setting
the version element below with a version available on Maven Central:

http://central.maven.org/maven2/com/here/account/here-oauth-client/

Pick the version that you see most fit. We recommend that you select the latest version.
```
<dependency>
<groupId>com.here.account</groupId>
Expand Down Expand Up @@ -111,6 +118,10 @@ Test instructions
The tests must be configured with valid HERE client credentials to pass. To get HERE client
credentials, please contact HERE_ACCOUNT_SUPPORT@here.com.

When you commit your code in GitHub it will be automatically tested with Github Workflows.

https://docs.github.com/en/actions/using-workflows

Open a command prompt at the working tree's root directory and type:

$ mvn clean package
Expand Down