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
2 changes: 1 addition & 1 deletion smithy-java-examples/quickstart-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For more information on this example, see the [Smithy Java Quickstart Guide](htt
### Layout

- `client/`: Code generated client that can call the server.
- `model/`: Common package for the service API model. Shared by both client and server.
- `smithy/`: Common package for the service API model. Shared by both client and server.
- `server/`: Code generated Server that implements stubbed operations code-generated from the service model.

### Usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
smithyBuild("software.amazon.smithy.java.codegen:plugins:$smithyJavaVersion")

// === Service model ===
implementation(project(":model"))
implementation(project(":smithy"))

// === Client Dependencies ===
// Core client dependency required by generated client code.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
smithyBuild("software.amazon.smithy.java.codegen:plugins:$smithyJavaVersion")

// === Service model ===
implementation(project(":model"))
implementation(project(":smithy"))

// === Server dependencies ===
// Adds an HTTP server implementation based on netty
Expand Down
2 changes: 1 addition & 1 deletion smithy-java-examples/quickstart-java/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ pluginManagement {

// Subprojects
include("client")
include("model")
include("smithy")
include("server")
Loading