Skip to content

Commit

Permalink
Merge pull request #32 from amzn/fix_target_dependency
Browse files Browse the repository at this point in the history
Fix target dependency.
  • Loading branch information
tachyonics authored Jun 9, 2022
2 parents 7be9e3b + 619534b commit 96fa351
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ let package = Package(
name: "SmokeFrameworkApplicationGenerate", dependencies: [
.target(name: "SmokeFrameworkCodeGeneration"),
.product(name: "OpenAPIServiceModel", package: "service-model-swift-code-generate"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.target(
name: "SmokeFrameworkCodeGeneration", dependencies: [
.product(name: "ServiceModelGenerate", package: "service-model-swift-code-generate"),
.product(name: "SmokeAWSModelGenerate", package: "smoke-aws-generate"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ In order to use this generator as an SPM plugin, the application will have to us
Still in the `Package.swift` manifest, add a dependency on this package.

```
.package(url: "https://github.com/amzn/smoke-framework-application-generate", from: "3.0.0-beta.1")
.package(url: "https://github.com/amzn/smoke-framework-application-generate", from: "3.0.0-beta.3")
```

## Step 3: Specific plugs for the Model, Client and Http1 Integration packages
Expand Down

0 comments on commit 96fa351

Please sign in to comment.