Skip to content

replace Java2Swift.config with swift-java.config #350

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

Merged
merged 1 commit into from
Aug 6, 2025
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 @@ -57,7 +57,7 @@ OPTIONS:
The name of the Swift module into which the resulting Swift types will be generated.
--depends-on <depends-on>
A swift-java configuration file for a given Swift module name on which this module depends,
e.g., JavaKitJar=Sources/JavaKitJar/Java2Swift.config. There should be one of these options
e.g., JavaKitJar=Sources/JavaKitJar/swift-java.config. There should be one of these options
for each Swift module that this module depends on (transitively) that contains wrapped Java sources.
--swift-native-implementation <swift-native-implementation>
The names of Java classes whose declared native methods will be implemented in Swift.
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftJavaTool/Commands/JExtractCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extension SwiftJava {
@Option(
help: """
A swift-java configuration file for a given Swift module name on which this module depends,
e.g., Sources/JavaKitJar/Java2Swift.config. There should be one of these options
e.g., Sources/JavaKitJar/swift-java.config. There should be one of these options
for each Swift module that this module depends on (transitively) that contains wrapped Java sources.
"""
)
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftJavaTool/Commands/WrapJavaCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extension SwiftJava {
@Option(
help: """
A swift-java configuration file for a given Swift module name on which this module depends,
e.g., JavaKitJar=Sources/JavaKitJar/Java2Swift.config. There should be one of these options
e.g., JavaKitJar=Sources/JavaKitJar/swift-java.config. There should be one of these options
for each Swift module that this module depends on (transitively) that contains wrapped Java sources.
"""
)
Expand Down
Loading