Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
211010717
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
211010717
Commits
61321410
Unverified
Commit
61321410
authored
4 years ago
by
jimin
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
optimize: optimize maven clean plugin to clear the distribution directory (#3415)
parent
5fb5b384
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
changes/1.5.0.md
+1
-0
1 addition, 0 deletions
changes/1.5.0.md
changes/en-us/1.5.0.md
+1
-0
1 addition, 0 deletions
changes/en-us/1.5.0.md
server/pom.xml
+20
-0
20 additions, 0 deletions
server/pom.xml
with
23 additions
and
1 deletion
README.md
+
1
−
1
View file @
61321410
...
...
@@ -117,7 +117,7 @@ Contributors are welcomed to join the Seata project. Please check [CONTRIBUTING]
*
dev-seata@googlegroups.com , for dev/user discussion.
[
subscribe
](
mailto:dev-seata+subscribe@googlegroups.com
)
,
[
unsubscribe
](
mailto:dev-seata+unsubscribe@googlegroups.com
)
,
[
archive
](
https://groups.google.com/forum/#!forum/dev-seata
)
<img
src=
"https://img.alicdn.com/
tfs/TB1NvtaFrj1gK0jSZFOXXc7GpXa-1218-40
4.jpg"
height=
"200"
width=
"630"
>
<img
src=
"https://img.alicdn.com/
imgextra/i3/O1CN01FKBxyk25Ffx83dIJc_!!6000000007497-0-tps-1078-35
4.jpg"
height=
"200"
width=
"630"
>
## Seata ecosystem
...
...
This diff is collapsed.
Click to expand it.
changes/1.5.0.md
+
1
−
0
View file @
61321410
...
...
@@ -45,6 +45,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单
-
[
[#3397
](
https://github.com/seata/seata/pull/3397
)
] 添加更改记录文件夹
-
[
[#3303
](
https://github.com/seata/seata/pull/3303
)
] 支持从nacos单一dataId中读取所有配置
-
[
[#3380
](
https://github.com/seata/seata/pull/3380
)
] 优化globalTransactionScanner监听器
-
[
[#3415
](
https://github.com/seata/seata/pull/3415
)
] 优化 maven clean 插件可清除 distribution 目录
...
...
This diff is collapsed.
Click to expand it.
changes/en-us/1.5.0.md
+
1
−
0
View file @
61321410
...
...
@@ -44,6 +44,7 @@
-
[
[#3397
](
https://github.com/seata/seata/pull/3397
)
] add the change records folder
-
[
[#3303
](
https://github.com/seata/seata/pull/3303
)
] supports reading all configurations from a single Nacos dataId
-
[
[#3380
](
https://github.com/seata/seata/pull/3380
)
] globalTransactionScanner listener optimize
-
[
[#3415
](
https://github.com/seata/seata/pull/3415
)
] optimize maven clean plugin to clear the distribution directory
### test
...
...
This diff is collapsed.
Click to expand it.
server/pom.xml
+
20
−
0
View file @
61321410
...
...
@@ -126,6 +126,26 @@
<id>
release-seata
</id>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-clean-plugin
</artifactId>
<version>
3.0.0
</version>
<configuration>
<excludeDefaultDirectories>
false
</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>
../distribution
</directory>
<includes>
<include>
bin/**
</include>
<include>
conf/**
</include>
<include>
logs/**
</include>
<include>
lib/**
</include>
<include>
seata-server-${revision}/**
</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
appassembler-maven-plugin
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment