Skip to content

Commit 71b6993

Browse files
committed
change readme
1 parent 2908bc8 commit 71b6993

2 files changed

Lines changed: 23 additions & 24 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A `Java` version of the `SDK`, based on the [`FOFA Pro API`](https://fofa.so/api
1414

1515
### Apache Maven
1616

17-
```
17+
```java
1818
<dependency>
1919
<groupId>com.r4v3zn.fofa</groupId>
2020
<artifactId>fofa-core</artifactId>
@@ -25,45 +25,45 @@ A `Java` version of the `SDK`, based on the [`FOFA Pro API`](https://fofa.so/api
2525
### Gradle Groovy DSL
2626

2727
```java
28-
implementation 'com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE'
28+
implementation 'com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE'
2929
```
3030

3131
### Gradle Kotlin DSL
3232

3333
```java
34-
implementation("com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE")
34+
implementation("com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE")
3535
```
3636

3737
### Scala SBT
3838

3939
```java
40-
libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.2.RELEASE"
40+
libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.4.RELEASE"
4141
```
4242

4343
### Apache Ivy
4444

4545
```java
46-
<dependency org="com.r4v3zn.fofa" name="fofa-core" rev="1.0.2.RELEASE" />
46+
<dependency org="com.r4v3zn.fofa" name="fofa-core" rev="1.0.4.RELEASE" />
4747
```
4848

4949
### Groovy Grape
5050

5151
```java
5252
@Grapes(
53-
@Grab(group='com.r4v3zn.fofa', module='fofa-core', version='1.0.2.RELEASE')
53+
@Grab(group='com.r4v3zn.fofa', module='fofa-core', version='1.0.4.RELEASE')
5454
)
5555
```
5656

5757
### Leiningen
5858

5959
```java
60-
[com.r4v3zn.fofa/fofa-core "1.0.2.RELEASE"]
60+
[com.r4v3zn.fofa/fofa-core "1.0.4.RELEASE"]
6161
```
6262

6363
### Apache Buildr
6464

6565
```java
66-
'com.r4v3zn.fofa:fofa-core:jar:1.0.2.RELEASE'
66+
'com.r4v3zn.fofa:fofa-core:jar:1.0.4.RELEASE'
6767
```
6868

6969
### Maven Central Badge
@@ -75,16 +75,16 @@ libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.2.RELEASE"
7575
### PURL
7676

7777
```java
78-
pkg:maven/com.r4v3zn.fofa/fofa-core@1.0.2.RELEASE
78+
pkg:maven/com.r4v3zn.fofa/fofa-core@1.0.4.RELEASE
7979
```
8080

8181
### Bazel
8282

8383
```java
8484
maven_jar(
8585
name = "fofa-core",
86-
artifact = "com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE",
87-
sha1 = "669cac1d690068d60a8e9968d86340b8769810cb",
86+
artifact = "com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE",
87+
sha1 = "151fc5fe259ccad55c040ed46d40b9bc19dd6b32",
8888
)
8989
```
9090

README_zh.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,56 +18,56 @@
1818

1919
### Apache Maven
2020

21-
```
21+
```java
2222
<dependency>
2323
<groupId>com.r4v3zn.fofa</groupId>
2424
<artifactId>fofa-core</artifactId>
25-
<version>1.0.3.RELEASE</version>
25+
<version>1.0.4.RELEASE</version>
2626
</dependency>
2727
```
2828

2929
### Gradle Groovy DSL
3030

3131
```java
32-
implementation 'com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE'
32+
implementation 'com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE'
3333
```
3434

3535
### Gradle Kotlin DSL
3636

3737
```java
38-
implementation("com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE")
38+
implementation("com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE")
3939
```
4040

4141
### Scala SBT
4242

4343
```java
44-
libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.2.RELEASE"
44+
libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.4.RELEASE"
4545
```
4646

4747
### Apache Ivy
4848

4949
```java
50-
<dependency org="com.r4v3zn.fofa" name="fofa-core" rev="1.0.2.RELEASE" />
50+
<dependency org="com.r4v3zn.fofa" name="fofa-core" rev="1.0.4.RELEASE" />
5151
```
5252

5353
### Groovy Grape
5454

5555
```java
5656
@Grapes(
57-
@Grab(group='com.r4v3zn.fofa', module='fofa-core', version='1.0.2.RELEASE')
57+
@Grab(group='com.r4v3zn.fofa', module='fofa-core', version='1.0.4.RELEASE')
5858
)
5959
```
6060

6161
### Leiningen
6262

6363
```java
64-
[com.r4v3zn.fofa/fofa-core "1.0.2.RELEASE"]
64+
[com.r4v3zn.fofa/fofa-core "1.0.4.RELEASE"]
6565
```
6666

6767
### Apache Buildr
6868

6969
```java
70-
'com.r4v3zn.fofa:fofa-core:jar:1.0.2.RELEASE'
70+
'com.r4v3zn.fofa:fofa-core:jar:1.0.4.RELEASE'
7171
```
7272

7373
### Maven Central Badge
@@ -79,20 +79,19 @@ libraryDependencies += "com.r4v3zn.fofa" % "fofa-core" % "1.0.2.RELEASE"
7979
### PURL
8080

8181
```java
82-
pkg:maven/com.r4v3zn.fofa/fofa-core@1.0.2.RELEASE
82+
pkg:maven/com.r4v3zn.fofa/fofa-core@1.0.4.RELEASE
8383
```
8484

8585
### Bazel
8686

8787
```java
8888
maven_jar(
8989
name = "fofa-core",
90-
artifact = "com.r4v3zn.fofa:fofa-core:1.0.2.RELEASE",
91-
sha1 = "669cac1d690068d60a8e9968d86340b8769810cb",
90+
artifact = "com.r4v3zn.fofa:fofa-core:1.0.4.RELEASE",
91+
sha1 = "151fc5fe259ccad55c040ed46d40b9bc19dd6b32",
9292
)
9393
```
9494

95-
9695
## 使用
9796

9897
|字段名称|描述|

0 commit comments

Comments
 (0)