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

Add swift package add-target-plugin command #8432

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

hi2gage
Copy link
Contributor

@hi2gage hi2gage commented Mar 30, 2025

Adds swift package add-target-plugin command for adding plugins to target from CLI

Motivation:

Featured requested in #8169

Allows users to add package plugins to targets via command line.

Forums Discussion

Modifications:

Add new add-target-plugin command which aligns with the existing add-target-dependency command

> swift package add-target-plugin --help
OVERVIEW: Add a new target plugin to the manifest

USAGE: swift package add-target-plugin <plugin-name> <target-name> [--package <package>]

ARGUMENTS:
  <plugin-name>           The name of the new plugin
  <target-name>           The name of the target to update

OPTIONS:
  --package <package>     The package in which the plugin resides
  --version               Show the version.
  -h, -help, --help       Show help information.

Result:

After running the following command:

swift package add-target-plugin OpenAPIGenerator myTarget --package swift-openapi-generator

The following addition will be made to the Package.swift manifest:

.target(
  name: "myTarget",
  plugins: [
    .plugin(name: "OpenAPIGenerator", package: "swift-openapi-generator")
  ]
)

@@ -803,7 +803,7 @@ final class RegistryClientTests: XCTestCase {
let availableManifests = try await registryClient.getAvailableManifests(
package: identity,
version: version,
observabilityScope: ObservabilitySystem.NOOP,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed borked tests in main

@dschaefer2
Copy link
Member

@swift-ci please test

@dschaefer2
Copy link
Member

@swift-ci please test self hosted windows

@bkhouri
Copy link
Contributor

bkhouri commented Apr 1, 2025

@swift-ci please test windows

@MaxDesiatov MaxDesiatov changed the title Add add plugin command Add swift package add-target-plugin command Apr 1, 2025
@hi2gage
Copy link
Contributor Author

hi2gage commented Apr 1, 2025

@bkhouri is windows (non self hosted) being flakey or is this somehow related to changes I made?

It looks like #8434 passed so maybe I need rebase in the new changes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants