Skip to content

Commit

Permalink
GP-2302: Upgrading protobuf to 3.21.8 (#4415, #4540)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed Nov 9, 2022
1 parent d474de5 commit c301dd2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Ghidra/Debug/Debugger-gadp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,33 +33,33 @@ configurations {
def platform = getCurrentPlatformName()

dependencies {
allProtocArtifacts 'com.google.protobuf:protoc:3.21.6:windows-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.6:linux-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.6:linux-aarch_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.6:osx-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.6:osx-aarch_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.8:windows-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.8:linux-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.8:linux-aarch_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.8:osx-x86_64@exe'
allProtocArtifacts 'com.google.protobuf:protoc:3.21.8:osx-aarch_64@exe'

if (isCurrentWindows()) {
protocArtifact 'com.google.protobuf:protoc:3.21.6:windows-x86_64@exe'
protocArtifact 'com.google.protobuf:protoc:3.21.8:windows-x86_64@exe'
}
if (isCurrentLinux()) {
if (platform.endsWith("x86_64")) {
protocArtifact 'com.google.protobuf:protoc:3.21.6:linux-x86_64@exe'
protocArtifact 'com.google.protobuf:protoc:3.21.8:linux-x86_64@exe'
}
else {
protocArtifact 'com.google.protobuf:protoc:3.21.6:linux-aarch_64@exe'
protocArtifact 'com.google.protobuf:protoc:3.21.8:linux-aarch_64@exe'
}
}
if (isCurrentMac()) {
if (platform.endsWith("x86_64")) {
protocArtifact 'com.google.protobuf:protoc:3.21.6:osx-x86_64@exe'
protocArtifact 'com.google.protobuf:protoc:3.21.8:osx-x86_64@exe'
}
else {
protocArtifact 'com.google.protobuf:protoc:3.21.6:osx-aarch_64@exe'
protocArtifact 'com.google.protobuf:protoc:3.21.8:osx-aarch_64@exe'
}
}

api 'com.google.protobuf:protobuf-java:3.21.6'
api 'com.google.protobuf:protobuf-java:3.21.8'
api project(':Framework-AsyncComm')
api project(':Framework-Debugging')
api project(':ProposedUtils')
Expand All @@ -70,7 +70,7 @@ dependencies {

/*protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.21.6'
artifact = 'com.google.protobuf:protoc:3.21.8'
}
}*/

Expand Down

0 comments on commit c301dd2

Please sign in to comment.