File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,18 @@ test:
11
11
./gradlew test --info
12
12
13
13
build : clean
14
- ./gradlew build -x test
14
+ # ./gradlew build -x test
15
+ ./gradlew build publishToMavenLocal
16
+ @echo "see build/lib"
15
17
16
18
oobt : build
17
19
$(MAKE ) -C demo all
18
20
21
+ doc :
22
+ gradle javadoc:javadoc
23
+
19
24
# Create a release using GitHub
20
- release : build
25
+ release : doc build
21
26
@echo " drag drop file"
22
27
open build/libs/
23
28
open build/distributions/
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
10
10
// Package default
11
11
archivesBaseName = ' google-search-results-java'
12
- version = ' 2.0.1 '
12
+ version = ' 2.0.2 '
13
13
group = ' serpapi'
14
14
15
15
// java version
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class SerpApiHttpClient {
22
22
private int httpReadTimeout ;
23
23
24
24
// current API version
25
- public static String VERSION = "2.0.1 " ;
25
+ public static String VERSION = "2.0.2 " ;
26
26
27
27
// backend service
28
28
public static String BACKEND = "https://serpapi.com" ;
You can’t perform that action at this time.
0 commit comments