v1.4.3 release (^.^)YYa!!

This commit is contained in:
开源海哥 2023-06-24 18:45:37 +08:00
parent 548f4da750
commit e542b55527
7 changed files with 42 additions and 13 deletions

3
.gitignore vendored
View File

@ -14,4 +14,5 @@ logs
node_modules
yarn.lock
dist
package-lock.json
package-lock.json
.flattened-pom.xml

View File

@ -8,7 +8,7 @@ MyBatis-Flex 使用了 APT 技术,这两个类是自动生成的。
## 阿里镜像找不到依赖?
```txt
Could not find artifact com.mybatis-flex:mybatis-flex-spring-boot-starter:pom:1.4.2
Could not find artifact com.mybatis-flex:mybatis-flex-spring-boot-starter:pom:1.4.3
in alimaven (http://maven.aliyun.com/nexus/content/groups/public/)
```

View File

@ -39,7 +39,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>

View File

@ -12,12 +12,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<scope>provided</scope>
</dependency>
```
@ -28,12 +28,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<scope>provided</scope>
</dependency>
``````
@ -44,12 +44,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<scope>provided</scope>
</dependency>
```
@ -70,7 +70,7 @@
<path>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</path>
</annotationProcessorPaths>
</configuration>

View File

@ -215,7 +215,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
```
dependencies {
...
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.4.2'
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.4.3'
}
```

View File

@ -10,7 +10,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
```

30
pom.xml
View File

@ -51,7 +51,7 @@
</modules>
<properties>
<revision>1.4.2</revision>
<revision>1.4.3</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
@ -69,6 +69,7 @@
<solon.version>2.3.1</solon.version>
<junit.version>4.13.2</junit.version>
<maven_flatten_version>1.5.0</maven_flatten_version>
</properties>
<dependencyManagement>
@ -286,6 +287,33 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${maven_flatten_version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>