发布 1.0.5 版本

This commit is contained in:
hubin 2024-10-27 11:30:00 +08:00
parent 6a18a6ded8
commit d418dd8232
6 changed files with 28 additions and 21 deletions

View File

@ -127,7 +127,7 @@ subprojects {
//
afterEvaluate { project ->
if (project.name == 'flowlong-spring-boot-example') {
if (project.name == 'flowlong-spring-boot-example' || project.name == 'flowlong-solon-example') {
project.tasks.all {
it.enabled = false
}

View File

@ -1,5 +1,16 @@
# 更新日志
## [v1.0.5] 2024.10.27
- 支持自定义解决无任务参与者情况
- 跳转任务限定约束只允许为发起节点和审批节点
- 流程监听实例任务通知事件类型分离
- 数据传递完成参数使用进行清理
- 调整 mysql 脚本字段类型完善
- 新增自动认领测试用例
- 新增 solon 适配示例
## [v1.0.4] 2024.10.09
- 记录区分撤回拿回撤回任务

View File

@ -2,9 +2,8 @@ description "flowlong spring boot example"
dependencies {
implementation project(":flowlong-spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation("com.baomidou:mybatis-plus-boot-starter")
implementation("mysql:mysql-connector-java")
implementation("org.noear:solon-web:3.0.1")
implementation("org.noear:solon-scheduling-simple:3.0.1")
}

View File

@ -5,19 +5,21 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.noear</groupId>
<artifactId>solon-parent</artifactId>
<version>3.0.1</version>
<relativePath/>
<groupId>com.aizuda</groupId>
<artifactId>flowlong</artifactId>
<version>${revision}</version>
</parent>
<properties>
<solonVersion>3.0.1</solonVersion>
</properties>
<artifactId>flowlong-solon-example</artifactId>
<dependencies>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>flowlong-solon-plugin</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
@ -27,29 +29,23 @@
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-web</artifactId>
<version>${solonVersion}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.1</version>
<groupId>org.noear</groupId>
<artifactId>solon-scheduling-simple</artifactId>
<version>${solonVersion}</version>
</dependency>
<!-- solon的logback日志实现 -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-logging-logback</artifactId>
<version>${solonVersion}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-scheduling-simple</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -1,5 +1,5 @@
APP_GROUP=com.aizuda
APP_VERSION=1.0.4
APP_VERSION=1.0.5
SONATYPE_HOST=CENTRAL_PORTAL
RELEASE_SIGNING_ENABLED=true

View File

@ -4,6 +4,7 @@ rootProject.name = 'flowlong'
include 'flowlong-core'
include 'flowlong-mybatis-plus'
include 'flowlong-solon-plugin'
include 'flowlong-solon-example'
include 'flowlong-spring-boot-starter'
include 'flowlong-spring-boot-example'