发布 1.0.5 版本
This commit is contained in:
parent
6a18a6ded8
commit
d418dd8232
@ -127,7 +127,7 @@ subprojects {
|
|||||||
|
|
||||||
// 编译任务忽略案例模块
|
// 编译任务忽略案例模块
|
||||||
afterEvaluate { project ->
|
afterEvaluate { project ->
|
||||||
if (project.name == 'flowlong-spring-boot-example') {
|
if (project.name == 'flowlong-spring-boot-example' || project.name == 'flowlong-solon-example') {
|
||||||
project.tasks.all {
|
project.tasks.all {
|
||||||
it.enabled = false
|
it.enabled = false
|
||||||
}
|
}
|
||||||
|
11
changelog.md
11
changelog.md
@ -1,5 +1,16 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
## [v1.0.5] 2024.10.27
|
||||||
|
|
||||||
|
- 支持自定义解决无任务参与者情况
|
||||||
|
- 跳转任务限定约束只允许为发起节点和审批节点
|
||||||
|
- 流程监听实例任务通知事件类型分离
|
||||||
|
- 数据传递完成参数使用进行清理
|
||||||
|
- 调整 mysql 脚本字段类型完善
|
||||||
|
- 新增自动认领测试用例
|
||||||
|
- 新增 solon 适配示例
|
||||||
|
|
||||||
|
|
||||||
## [v1.0.4] 2024.10.09
|
## [v1.0.4] 2024.10.09
|
||||||
|
|
||||||
- 记录区分撤回拿回撤回任务
|
- 记录区分撤回拿回撤回任务
|
||||||
|
@ -2,9 +2,8 @@ description "flowlong spring boot example"
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":flowlong-spring-boot-starter")
|
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("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")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,19 +5,21 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.noear</groupId>
|
<groupId>com.aizuda</groupId>
|
||||||
<artifactId>solon-parent</artifactId>
|
<artifactId>flowlong</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>${revision}</version>
|
||||||
<relativePath/>
|
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<solonVersion>3.0.1</solonVersion>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<artifactId>flowlong-solon-example</artifactId>
|
<artifactId>flowlong-solon-example</artifactId>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.aizuda</groupId>
|
<groupId>com.aizuda</groupId>
|
||||||
<artifactId>flowlong-solon-plugin</artifactId>
|
<artifactId>flowlong-solon-plugin</artifactId>
|
||||||
<version>1.0.4</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.baomidou</groupId>
|
<groupId>com.baomidou</groupId>
|
||||||
@ -27,29 +29,23 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.noear</groupId>
|
<groupId>org.noear</groupId>
|
||||||
<artifactId>solon-web</artifactId>
|
<artifactId>solon-web</artifactId>
|
||||||
|
<version>${solonVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.noear</groupId>
|
||||||
<artifactId>postgresql</artifactId>
|
<artifactId>solon-scheduling-simple</artifactId>
|
||||||
<version>42.7.1</version>
|
<version>${solonVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- solon的logback日志实现 -->
|
<!-- solon的logback日志实现 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.noear</groupId>
|
<groupId>org.noear</groupId>
|
||||||
<artifactId>solon-logging-logback</artifactId>
|
<artifactId>solon-logging-logback</artifactId>
|
||||||
|
<version>${solonVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.zaxxer</groupId>
|
|
||||||
<artifactId>HikariCP</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.noear</groupId>
|
|
||||||
<artifactId>solon-scheduling-simple</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
APP_GROUP=com.aizuda
|
APP_GROUP=com.aizuda
|
||||||
APP_VERSION=1.0.4
|
APP_VERSION=1.0.5
|
||||||
|
|
||||||
SONATYPE_HOST=CENTRAL_PORTAL
|
SONATYPE_HOST=CENTRAL_PORTAL
|
||||||
RELEASE_SIGNING_ENABLED=true
|
RELEASE_SIGNING_ENABLED=true
|
||||||
|
@ -4,6 +4,7 @@ rootProject.name = 'flowlong'
|
|||||||
include 'flowlong-core'
|
include 'flowlong-core'
|
||||||
include 'flowlong-mybatis-plus'
|
include 'flowlong-mybatis-plus'
|
||||||
include 'flowlong-solon-plugin'
|
include 'flowlong-solon-plugin'
|
||||||
|
include 'flowlong-solon-example'
|
||||||
include 'flowlong-spring-boot-starter'
|
include 'flowlong-spring-boot-starter'
|
||||||
include 'flowlong-spring-boot-example'
|
include 'flowlong-spring-boot-example'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user