Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
110bd55
feat: 兼容长安链的打包改动
luxmus Jan 30, 2024
4809342
Update start.sh
luxmus Jan 31, 2024
dfb1eb4
支持 chainmaker 长安链
shaxunyeman Feb 7, 2024
0dd290a
feat : 对接账户管理修改为http,编译部分修改
zyzhangyang Mar 25, 2024
9e43fe8
feat : wecross适配账户管理服务的无密码登录接口
zyzhangyang May 4, 2024
6268d0c
update scripts for chainmaker chain
shaxunyeman May 6, 2024
34c0d9e
add stub-sample.toml for chainmaker
shaxunyeman May 6, 2024
4bdbd35
feat: automaticlly connect to a chain stub that was deploied thronght…
shaxunyeman May 9, 2024
6654a2e
fix: handle an io.netty.util.IllegalReferenceCountException when requ…
shaxunyeman May 10, 2024
2bf9937
test: handler request
shaxunyeman May 10, 2024
1d097dd
feat: classify error message in upload handler
shaxunyeman May 10, 2024
fac869f
fix: 修改字符串为空导致异常的情况
shaxunyeman Apr 10, 2025
5443514
feat: 增加登录过程中过滤的路径
shaxunyeman Apr 10, 2025
cd7ffb3
fix: 移除无法下载 org.ajoberstar.grgit 插件
shaxunyeman Apr 10, 2025
5ea272c
feat: 增加订阅智能合约事件处理功能
shaxunyeman Apr 30, 2025
ce60a4d
feat: 完全改写添加链插件功能
shaxunyeman May 13, 2025
e7162f9
feat: 添加链的时候,优化内部的传参
shaxunyeman May 21, 2025
194a01b
fix: 修改加某个插件失败后导致整个系统退出的问题
shaxunyeman May 22, 2025
32103bb
fix: 日志提示修复
shaxunyeman May 22, 2025
74da5f9
fix: 移除 fisco-bcos tcnative 国密版本依赖包
shaxunyeman May 22, 2025
61d8d8f
feat: 修改日志等级
shaxunyeman Jun 10, 2025
d77161c
feat: 处理 handleAddChain 功能的时候增加 MQ 的配置
shaxunyeman Jun 10, 2025
81ac1cd
feat: 移除 dockerfile 中启动 wecross
shaxunyeman Jun 10, 2025
10040a3
test: 增加对 MQ 的配置测试
shaxunyeman Jun 10, 2025
1f4ab42
fix: 修改移除没有启动的链插件异常问题
shaxunyeman Jun 17, 2025
f605276
fix: 修改通过接口启动链插件没有设置 connenct hanlder 的问题
shaxunyeman Jun 24, 2025
a0fe17e
feat: 增加插件类型携带链名称
shaxunyeman Jul 3, 2025
fbec633
美化代码
shaxunyeman Jul 3, 2025
83b6711
feat: 链帐户和链名绑定
luxmus Jul 3, 2025
6400cfc
Update UniversalAccountFactory.java
luxmus Jul 3, 2025
3a27fc0
增加跨链应用开发和插件开发文档
shaxunyeman Jul 9, 2025
a041fb2
获取链状态的时间间隔有1s调整至10s
shaxunyeman Jul 16, 2025
f2cb196
增加停止插件日志
shaxunyeman Jul 16, 2025
84f3e23
移除创建链状户失败的日志
shaxunyeman Jul 16, 2025
4133026
newAuthFilter 里增加 auth/routerLogin 过滤
shaxunyeman Jul 24, 2025
44b05aa
增加释放connection接口
shaxunyeman Aug 19, 2025
2f43d43
增加链部署文档
shaxunyeman Aug 19, 2025
d0bccde
更新链插件配置文档
shaxunyeman Aug 19, 2025
51cd391
如果没有加载相关插件,就不创建该插件的链账户
shaxunyeman Aug 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'com.github.sherter.google-java-format' version '0.8'
id 'org.ajoberstar.grgit' version '4.0.1'
// id 'org.ajoberstar.grgit' version '4.0.1'
}

// Apply the java-library plugin to add support for Java Library
Expand Down Expand Up @@ -137,9 +137,9 @@ List logger = [

dependencies {
constraints {
compile group: 'io.netty', name: 'netty-all', version: '4.1.77.Final'
compile group: 'io.netty', name: 'netty-all', version: '4.1.53.Final'
compile 'io.netty:netty-codec-haproxy:4.1.89.Final'
compile group: 'org.fisco-bcos', name: 'tcnative', version: '2.0.51.0'
//compile group: 'org.fisco-bcos', name: 'tcnative', version: '2.0.51.0'
}

compile 'org.quartz-scheduler:quartz:2.3.2'
Expand All @@ -158,20 +158,31 @@ dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.69'
compile 'commons-codec:commons-codec:1.14'
compile 'javax.activation:activation:1.1.1'
compile 'org.fisco-bcos:tcnative'
//compile 'org.fisco-bcos:tcnative'
compile 'org.apache.httpcomponents:httpclient:4.5.13'
compile 'io.netty:netty-all'

compile 'org.springframework:spring-messaging:5.3.31'
compile ('com.rabbitmq:amqp-client:5.18.0') {
exclude group: "io.netty"
}
compile ('org.apache.kafka:kafka-clients:3.7.1') {
exclude group: "io.netty"
}
compile ('org.apache.rocketmq:rocketmq-client-java:5.0.5') {
exclude group: "io.netty"
}

// Use JUnit test framework
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.9'
}

sourceSets {
main {
resources {
exclude '/*'
}
// resources {
// exclude '/*'
// }
}
}

Expand Down Expand Up @@ -222,6 +233,10 @@ jar {
from configurations.runtime
into 'dist/lib'
}
copy {
from file('lib/')
into 'dist/lib'
}
copy {
from file('.').listFiles().findAll { File f -> (f.name.endsWith('.sh') || f.name.endsWith('.env')) }
into 'dist'
Expand All @@ -235,10 +250,9 @@ jar {
}

task makeStubJAR(type: org.gradle.api.tasks.bundling.Jar) {
baseName 'stub'
from 'build/classes/java/main/com/webank/wecross/stub'
from 'src/main/java/com/webank/wecross/stub'
into 'com/webank/wecross/stub/'
baseName 'wecross-java-stub'
into 'com/webank/wecross/stub', { from 'build/classes/java/main/com/webank/wecross/stub' }
into 'com/webank/wecross/exception', { from 'build/classes/java/main/com/webank/wecross/exception' }

destinationDir file('dist/stub/')
}
Expand Down
2 changes: 1 addition & 1 deletion docker/wecross-router/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ RUN apt-get update && \
tar -zxvf wecross-router.tar.gz && \
rm wecross-router.tar.gz

CMD [ "bash", "/wecross-router/start.sh"]
#CMD [ "bash", "/wecross-router/start.sh"]
Loading