Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
arc0035 committed May 10, 2021
1 parent c10f19f commit 26d6afe
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/WeBankBlockchain-SmartDev-SCGP/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ buildscript {
}
dependencies {
classpath 'com.webank:solc-gradle-plugin:1.0.0-SNAPSHOT'
//默认编译0.4.25版本,如果想编译0.6.10.0版本,请添加下述依赖
//classpath 'org.fisco-bcos:solcJ:0.6.10.0'
//默认编译0.4.25版本,如果想编译0.5.2.0版本,请添加下述依赖
//classpath 'org.fisco-bcos:solcJ:0.5.2.0'
}
}
Expand All @@ -49,10 +53,11 @@ solc{

| 配置项 | 必选 | 说明 |
| --- | --- | --- |
| pkg | | java合约包名 |
| pkg | 如果指定onlyAbiBin为false,则必须设置。否则无需设置 | java合约包名|
| contracts || 智能合约文件路径,默认为src/main/contracts |
| output || 编译输出路径,默认为src/main |
| onlyAbiBin || 是否只输出abi和bin默认false, |
| onlyAbiBin || 是否只输出abi和bin默认false|
| selector||默认为*,选择所有合约;若选择指定合约,可填所需合约文件名称,按逗号分隔,例如A.sol,B.sol|


## 编译合约
Expand Down

0 comments on commit 26d6afe

Please sign in to comment.