Skip to content

Commit

Permalink
build: 升级SpringBoot至2.5.2 发布0.14.0
Browse files Browse the repository at this point in the history
1. 解决单数据源事务不生效问题
2. 增加WebSecurity资源配置提供者,用于配置静态资源相关的安全访问
3.
增加AccessPointer访问埋点器
  • Loading branch information
Yiuman committed Jul 15, 2021
1 parent ab95c37 commit edd3435
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion citrus-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
21 changes: 11 additions & 10 deletions citrus-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,33 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.0.1</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>citrus-main</artifactId>


<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.test.skip>true</maven.test.skip>
<citrus.version>0.13.0</citrus.version>
<citrus.version>0.14.0</citrus.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-test</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jta-atomikos</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-jta-atomikos</artifactId>-->
<!-- </dependency>-->

<dependency>
<groupId>com.github.yiuman</groupId>
Expand Down
2 changes: 1 addition & 1 deletion citrus-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.yiuman</groupId>
<artifactId>citrus</artifactId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion citrus-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion citrus-system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion citrus-workflow-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion citrus-workflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>citrus</artifactId>
<groupId>com.github.yiuman</groupId>
<version>0.13.0</version>
<version>0.14.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.yiuman</groupId>
<artifactId>citrus</artifactId>
<version>0.13.0</version>
<version>0.14.0</version>
<name>citrus</name>
<description>springboot-开发脚手架</description>
<url>https://github.com/Yiuman/citrus</url>
Expand Down Expand Up @@ -48,14 +48,14 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.jdk>${java.version}</project.build.jdk>
<spring-boot.version>2.5.0</spring-boot.version>
<spring-boot.version>2.5.2</spring-boot.version>
<lombok.version>1.18.16</lombok.version>
<hutool.version>5.5.6</hutool.version>
<mybatis.plus.version>3.4.3</mybatis.plus.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<java.version>1.8</java.version>
<citrus.version>0.13.0</citrus.version>
<citrus.version>0.14.0</citrus.version>
<alibaba.easyexcel.version>2.1.6</alibaba.easyexcel.version>
<jjwt.version>0.11.0</jjwt.version>
<commons.io.version>2.6</commons.io.version>
Expand Down Expand Up @@ -180,7 +180,7 @@
</executions>
</plugin>

<!--GPG_TTY=$(tty)-->
<!--GPG_TTY=$(tty) -->
<!--export GPG_TTY-->
<!--mvn install -Dgpg.skip-->
</plugins>
Expand Down

0 comments on commit edd3435

Please sign in to comment.