File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 66$(info "found API_KEY variable")
77endif
88
9- all : init clean dep build run
9+ all : init clean build run
1010
1111init :
1212 gradle wrapper
1515clean :
1616 ./gradlew clean
1717
18+ # optional step if building from local source instead of downloading jar file form jitpack.io
1819dep :
1920 $(MAKE ) -C ../ build
2021 rm -rf libs
Original file line number Diff line number Diff line change @@ -22,10 +22,11 @@ repositories {
2222
2323dependencies {
2424 // local jar file
25- implementation fileTree(dir : " ./libs" , includes : [' *.jar' ])
26- implementation group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.5'
25+ // implementation fileTree(dir: "./libs", includes: ['*.jar'])
2726 // download jar file from github over jitpack
28- // implementation 'com.github.serpapi:serpapi:1.0.0'
27+ implementation ' com.github.serpapi:serpapi-java:1.0.0'
28+ // JSON dependencies
29+ implementation group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.5'
2930}
3031
3132// Define the main class for the application
You can’t perform that action at this time.
0 commit comments