Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
zhegexiaohuozi committed Aug 12, 2017
2 parents 4c3220e + 27f4f8d commit f7ba7c2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ SeimiCrawler是一个敏捷的,独立部署的,支持分布式的Java爬虫

# 快速开始 #

添加maven依赖(中央maven库最新版本1.3.4):
添加maven依赖(中央maven库最新版本1.3.5):
```
<dependency>
<groupId>cn.wanghaomiao</groupId>
<artifactId>SeimiCrawler</artifactId>
<version>1.3.4</version>
<version>1.3.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>cn.wanghaomiao</groupId>
<artifactId>SeimiCrawler</artifactId>
<version>1.3.4</version>
<version>1.3.5</version>
</dependency>
<dependency>
<groupId>net.paoding</groupId>
Expand Down
2 changes: 1 addition & 1 deletion project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<groupId>cn.wanghaomiao</groupId>
<artifactId>SeimiCrawler</artifactId>
<version>1.3.4</version>
<version>1.3.5</version>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<name>SeimiCrawler</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,11 @@ public Request setCrawlerName(String crawlerName) {
return this;
}

public Request useSeimiAgent(){
this.useSeimiAgent = true;
return this;
}

public Request setUseSeimiAgent(boolean useSeimiAgent){
this.useSeimiAgent = useSeimiAgent;
return this;
Expand Down

0 comments on commit f7ba7c2

Please sign in to comment.