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

update json jar #216

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/gradle-parse/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ case "$(uname -s)" in

CYGWIN*|MINGW32*|MSYS*|MINGW*)
echo "Windows"
javac --release 8 -cp "lib/groovy-3.0.9.jar;lib/json-20210307.jar;." com\\capacitorjs\\gradle\\Parse.java
javac --release 8 -cp "lib/groovy-3.0.9.jar;lib/json-20230227.jar;." com\\capacitorjs\\gradle\\Parse.java
jar cmvf META-INF/MANIFEST.MF capacitor-gradle-parse.jar com/capacitorjs/gradle/*.class
;;

Expand Down
Binary file removed packages/gradle-parse/lib/json-20210307.jar
Binary file not shown.
Binary file added packages/gradle-parse/lib/json-20230227.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/project/src/android/gradle-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export class GradleFile extends VFSStorable {
java,
[
'-cp',
'lib/groovy-3.0.9.jar;lib/json-20210307.jar;capacitor-gradle-parse.jar;.',
'lib/groovy-3.0.9.jar;lib/json-20230227.jar;capacitor-gradle-parse.jar;.',
'com.capacitorjs.gradle.Parse',
this.tempFile,
],
Expand Down