Skip to content

Commit

Permalink
发布 1.0.5 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
qmdx committed Oct 27, 2024
1 parent 6a18a6d commit d418dd8
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# 更新日志

## [v1.0.5] 2024.10.27

- 支持自定义解决无任务参与者情况
- 跳转任务限定约束只允许为发起节点和审批节点
- 流程监听实例任务通知事件类型分离
- 数据传递完成参数使用进行清理
- 调整 mysql 脚本字段类型完善
- 新增自动认领测试用例
- 新增 solon 适配示例


## [v1.0.4] 2024.10.09

- 记录区分撤回拿回撤回任务
Expand Down
5 changes: 2 additions & 3 deletions flowlong-solon-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

}
28 changes: 12 additions & 16 deletions flowlong-solon-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit d418dd8

Please sign in to comment.