Skip to content

Commit 9b208c1

Browse files
committed
1. 更新版本到0.4.2
2. 修复commons-beanutils
1 parent 23af4cf commit 9b208c1

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

conf/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ GATEWAY_PORT=9001
4040
STREAMIS_SERVER_INSTALL_IP=127.0.0.1
4141
STREAMIS_SERVER_INSTALL_PORT=9400
4242

43-
STREAMIS_VERSION=0.4.1-wedatasphere-SNAPSHOT
43+
STREAMIS_VERSION=0.4.2-wedatasphere-SNAPSHOT
4444

4545
STREAMIS_FILE_NAME="STREAMIS-$STREAMIS_VERSION"

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</modules>
4646

4747
<properties>
48-
<revision>0.4.1-wedatasphere-SNAPSHOT</revision>
48+
<revision>0.4.2-wedatasphere-SNAPSHOT</revision>
4949
<linkis.version>1.12.0-wds</linkis.version>
5050
<junit.version>4.12</junit.version>
5151
<dss.version>1.12.0-SNAPSHOT</dss.version>
@@ -75,6 +75,7 @@
7575
<flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
7676
<jetty.version>9.4.54.v20240208</jetty.version>
7777
<spring-security.vertion>6.4.4</spring-security.vertion>
78+
<commons-beanutils.version>1.11.0</commons-beanutils.version>
7879
</properties>
7980

8081

@@ -180,6 +181,11 @@
180181
<artifactId>validation-api</artifactId>
181182
<version>${validation.api.version}</version>
182183
</dependency>
184+
<dependency>
185+
<groupId>commons-beanutils</groupId>
186+
<artifactId>commons-beanutils</artifactId>
187+
<version>${commons-beanutils.version}</version>
188+
</dependency>
183189
</dependencies>
184190
</dependencyManagement>
185191

streamis-appconn/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@
5050
<artifactId>dss-common</artifactId>
5151
<groupId>com.webank.wedatasphere.dss</groupId>
5252
</exclusion>
53+
<exclusion>
54+
<artifactId>commons-beanutils</artifactId>
55+
<groupId>commons-beanutils</groupId>
56+
</exclusion>
5357
</exclusions>
5458
</dependency>
5559
<dependency>
@@ -76,6 +80,10 @@
7680
<version>${dss.version}</version>
7781
<scope>provided</scope>
7882
</dependency>
83+
<dependency>
84+
<groupId>commons-beanutils</groupId>
85+
<artifactId>commons-beanutils</artifactId>
86+
</dependency>
7987
</dependencies>
8088
<build>
8189
<plugins>

streamis-jobmanager/streamis-job-launcher/streamis-job-launcher-service/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
<groupId>com.webank.wedatasphere.streamis</groupId>
3838
<artifactId>streamis-job-launcher-linkis</artifactId>
3939
<version>${project.version}</version>
40+
<exclusions>
41+
<exclusion>
42+
<artifactId>commons-beanutils</artifactId>
43+
<groupId>commons-beanutils</groupId>
44+
</exclusion>
45+
</exclusions>
4046
</dependency>
4147
<dependency>
4248
<groupId>org.apache.linkis</groupId>
@@ -56,6 +62,10 @@
5662
<groupId>org.apache.linkis</groupId>
5763
<artifactId>linkis-module</artifactId>
5864
</dependency>
65+
<dependency>
66+
<artifactId>commons-beanutils</artifactId>
67+
<groupId>commons-beanutils</groupId>
68+
</dependency>
5969
</dependencies>
6070
<build>
6171
<plugins>

web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamis",
3-
"version": "0.4.1-wedatasphere-SNAPSHOT",
3+
"version": "0.4.2-wedatasphere-SNAPSHOT",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",
@@ -70,4 +70,4 @@
7070
"vue-cli-plugin-mockjs": "0.1.3",
7171
"vue-template-compiler": "2.6.12"
7272
}
73-
}
73+
}

0 commit comments

Comments
 (0)