Skip to content

Commit

Permalink
🔖 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunMengLu committed Oct 14, 2023
1 parent a30a170 commit 7930e8c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ mica auto 采用 Annotation Processor,她不是什么新技术,在 jdk 1.6
<dependency>
<groupId>net.dreamlu</groupId>
<artifactId>mica-auto</artifactId>
<version>2.3.2</version>
<version>${mica-auto.version}</version>
<scope>provided</scope>
</dependency>
```

### gradle >= 5.x
```groovy
annotationProcessor("net.dreamlu:mica-auto:2.3.2")
annotationProcessor("net.dreamlu:mica-auto:$micaAutoVersion}")
```

### gradle < 5.x
```groovy
compileOnly "net.dreamlu:mica-auto:2.3.2"
compileOnly "net.dreamlu:mica-auto:$micaAutoVersion"
```

## 原理
Expand Down
10 changes: 5 additions & 5 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ It is mainly used to avoid the inconsistency between the Spring Boot main projec
<dependency>
<groupId>net.dreamlu</groupId>
<artifactId>mica-auto</artifactId>
<version>2.3.2</version>
<version>${mica-auto.version}</version>
<scope>provided</scope>
</dependency>
```

### gradle >= 5.x
```gradle
annotationProcessor("net.dreamlu:mica-auto:2.3.2")
```groovy
annotationProcessor("net.dreamlu:mica-auto:$micaAutoVersion}")
```

### gradle < 5.x
```gradle
compileOnly "net.dreamlu:mica-auto:2.3.2"
```groovy
compileOnly "net.dreamlu:mica-auto:$micaAutoVersion"
```

## Principle
Expand Down

0 comments on commit 7930e8c

Please sign in to comment.