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 Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ let package = Package(
dependencies: [
swiftJavaJNICoreDep,
.package(url: "https://github.com/swiftlang/swift-syntax", from: "603.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.8.0"),
.package(url: "https://github.com/apple/swift-system", from: "1.4.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-collections", from: "1.3.0"), // primarily for ordered collections
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftJavaTool/SwiftJava.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct SwiftJava: AsyncParsableCommand {

public static func main() async {
do {
var command = try parseAsRoot(nil)
var command = try await parseAsRoot(nil)
if var asyncCommand = command as? AsyncParsableCommand {
try await asyncCommand.run()
} else {
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//
//===----------------------------------------------------------------------===//


pluginManagement {
includeBuild("BuildLogic")
}
Expand Down
Loading