Skip to content

Commit

Permalink
[License] Add front License (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJoy2048 authored Oct 8, 2023
1 parent 013022d commit b915550
Show file tree
Hide file tree
Showing 32 changed files with 1,092 additions and 1,561 deletions.
12 changes: 1 addition & 11 deletions seatunnel-server/seatunnel-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,6 @@
</exclusions>
</dependency>

<!--hutool-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>

<!--transforms-->
<dependency>
<groupId>org.apache.seatunnel</groupId>
Expand Down Expand Up @@ -410,11 +404,6 @@
<artifactId>commons-io</artifactId>
</dependency>

<!-- https://mvnrepository.com/artifact/com.cronutils/cron-utils -->
<dependency>
<groupId>com.cronutils</groupId>
<artifactId>cron-utils</artifactId>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service-annotations</artifactId>
Expand Down Expand Up @@ -491,6 +480,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!-- jdbc driver -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@
import org.apache.seatunnel.app.service.ITaskInstanceService;
import org.apache.seatunnel.app.utils.PageInfo;

import org.apache.commons.collections4.CollectionUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import cn.hutool.core.collection.CollUtil;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import lombok.extern.slf4j.Slf4j;
Expand Down Expand Up @@ -99,7 +100,7 @@ public Result<PageInfo<SeaTunnelJobInstanceDto>> getSyncTaskInstancePaging(
}

List<SeaTunnelJobInstanceDto> records = jobInstanceIPage.getRecords();
if (CollUtil.isEmpty(records)) {
if (CollectionUtils.isEmpty(records)) {
return result;
}
addJobDefineNameToResult(records);
Expand Down
101 changes: 67 additions & 34 deletions seatunnel-web-dist/release-docs/LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit b915550

Please sign in to comment.