Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Rename corellium modules #1806

Merged
merged 1 commit into from
Apr 14, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ JDK 8+ is required (tested on java 8 & 15). [KTOR](https://ktor.io/) is used as
To build just run (from the root of the project)

```
./gradlew build -p corellium/corellium-client
./gradlew build -p corellium/client
```

## API
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ There are two options:

## Corellium client

For details please check [client documentation](../corellium-client/README.md)
For details please check [client documentation](../client/README.md)

## Optional Config File

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tasks.withType<KotlinCompile> { kotlinOptions.jvmTarget = "1.8" }

dependencies {
implementation(Dependencies.KOTLIN_COROUTINES_CORE)
implementation(project(":corellium:corellium-client"))
implementation(project(":corellium:client"))
}

val runExampleScript by tasks.registering(JavaExec::class) {
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ include(
"test_projects:android",
":common",
":corellium",
":corellium:corellium-sandbox",
":corellium:corellium-client"
":corellium:sandbox",
":corellium:client"
)

plugins {
Expand Down