Skip to content

Commit 45d2b5d

Browse files
committed
fix org.sonatype.plugins
1 parent 3d94667 commit 45d2b5d

File tree

4 files changed

+57
-7
lines changed

4 files changed

+57
-7
lines changed

event.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# 流程事件触发机制
2+
3+
* 发起流程
4+
事件: CREATE TODO SAVE
5+
* 保存流程
6+
事件: SAVE
7+
* 提交流程
8+
事件: PASS TODO(下一个节点记录数据)
9+
* 驳回流程
10+
事件: REJECT TODO(下一个节点记录数据)
11+
* 撤回流程
12+
事件: RECALL
13+
* 删除流程
14+
事件: DELETE
15+
* 作废流程
16+
事件: VOIDED
17+
* 退回流程
18+
事件:BACK
19+
* 流程结束
20+
事件: FINISH
21+
* 转办流程
22+
事件:TRANSFER TODO(下一个节点记录数据)
23+
* 唤醒流程
24+
事件: TODO
25+
* 催办流程
26+
事件: URGE 当前审批人
27+
* 延期流程
28+
事件: 未发送事件
29+
30+
---------------------
31+
自定义事件:是前端自己触法的逻辑
32+
自定义接口:是执行后端按钮配置的脚本
33+
34+
在开始节点点击任何按钮的时候,若流程不存在则会先执行流程的创建,然后再执行对应的按钮操作。
35+
36+

pom.xml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -378,19 +378,30 @@
378378
</plugin>
379379

380380

381+
<!-- <plugin>-->
382+
<!-- <groupId>org.sonatype.plugins</groupId>-->
383+
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
384+
<!-- <version>1.6.13</version>-->
385+
<!-- <extensions>true</extensions>-->
386+
<!-- <configuration>-->
387+
<!-- <serverId>ossrh</serverId>-->
388+
<!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl>-->
389+
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
390+
<!-- </configuration>-->
391+
<!-- </plugin>-->
392+
381393
<plugin>
382-
<groupId>org.sonatype.plugins</groupId>
383-
<artifactId>nexus-staging-maven-plugin</artifactId>
384-
<version>1.6.13</version>
394+
<groupId>org.sonatype.central</groupId>
395+
<artifactId>central-publishing-maven-plugin</artifactId>
396+
<version>0.8.0</version>
385397
<extensions>true</extensions>
386398
<configuration>
387-
<serverId>ossrh</serverId>
388-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
389-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
399+
<publishingServerId>central</publishingServerId>
400+
<autoPublish>true</autoPublish>
401+
<waitUntil>published</waitUntil>
390402
</configuration>
391403
</plugin>
392404

393-
394405
<plugin>
395406
<groupId>org.apache.maven.plugins</groupId>
396407
<artifactId>maven-javadoc-plugin</artifactId>

springboot-starter-data-authorization/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<version>2.10.8</version>
1010
</parent>
1111

12+
<name>springboot-starter-data-authorization</name>
1213
<artifactId>springboot-starter-data-authorization</artifactId>
1314
<description>springboot-starter-data-authorization project for Spring Boot</description>
1415

springboot-starter-data-fast/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12+
<name>springboot-starter-data-fast</name>
1213
<artifactId>springboot-starter-data-fast</artifactId>
14+
<description>springboot-starter-data-fast project for Spring Boot</description>
1315

1416
<properties>
1517
<java.version>8</java.version>

0 commit comments

Comments
 (0)