Skip to content

Commit 5b69721

Browse files
committed
Update DSS with linkis version 0.9.4 and solves some compilation errors
#Fixes #168
1 parent 03f592a commit 5b69721

File tree

25 files changed

+46
-31
lines changed

25 files changed

+46
-31
lines changed

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.7.0</version>
25+
<version>0.8.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

conf/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ AZKABAN_ADRESS_PORT=8081
7777
QUALITIS_ADRESS_IP=127.0.0.1
7878
QUALITIS_ADRESS_PORT=8090
7979

80-
DSS_VERSION=0.7.0
80+
DSS_VERSION=0.8.0

datachecker-appjoint/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.7.0</version>
25+
<version>0.8.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

docs/en_US/ch1/DataSphereStudio_Compile_Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```xml
88
<properties>
9-
<dss.version>0.7.0</dss.version>
9+
<dss.version>0.8.0</dss.version>
1010
<linkis.version>0.9.3</linkis.version>
1111
<scala.version>2.11.8</scala.version>
1212
<jdk.compile.version>1.8</jdk.compile.version>

docs/en_US/ch2/Azkaban_LinkisJobType_Deployment_Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33

44
## 1. Ready work
5-
1.Click [release](https://github.com/WeBankFinTech/DataSphereStudio/releases/download/0.7.0/linkis-jobtype-0.7.0.zip) to select the corresponding installation package to download:
5+
1.Click [release](https://github.com/WeBankFinTech/DataSphereStudio/releases/download/0.8.0/linkis-jobtype-0.8.0.zip) to select the corresponding installation package to download:
66

77
- linkis-jobtype-$version.zip
88

docs/zh_CN/ch1/DSS编译文档.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```xml
88
<properties>
9-
<dss.version>0.7.0</dss.version>
9+
<dss.version>0.8.0</dss.version>
1010
<linkis.version>0.9.3</linkis.version>
1111
<scala.version>2.11.8</scala.version>
1212
<jdk.compile.version>1.8</jdk.compile.version>

dss-appjoint-auth/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.7.0</version>
25+
<version>0.8.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

@@ -38,6 +38,11 @@
3838
<artifactId>linkis-common</artifactId>
3939
<version>${linkis.version}</version>
4040
</dependency>
41+
<dependency>
42+
<groupId>javax.servlet</groupId>
43+
<artifactId>javax.servlet-api</artifactId>
44+
<version>3.1.0</version>
45+
</dependency>
4146
</dependencies>
4247

4348
<build>

dss-appjoint-auth/src/main/scala/com/webank/wedatasphere/dss/appjoint/auth/impl/AppJointAuthImpl.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ import com.webank.wedatasphere.dss.appjoint.auth.{AppJointAuth, RedirectMsg}
2424
import com.webank.wedatasphere.linkis.common.utils.Logging
2525
import com.webank.wedatasphere.linkis.httpclient.dws.DWSHttpClient
2626
import com.webank.wedatasphere.linkis.httpclient.dws.config.DWSClientConfigBuilder
27-
import javax.servlet.http.{Cookie, HttpServletRequest}
27+
import javax.servlet.http.HttpServletRequest
2828
import org.apache.commons.io.IOUtils
29+
import org.apache.http.impl.cookie.BasicClientCookie
2930

3031
import scala.collection.JavaConversions._
3132

@@ -68,7 +69,7 @@ class AppJointAuthImpl private() extends AppJointAuth with Logging {
6869
val index = cookie.indexOf("=")
6970
val key = cookie.substring(0, index).trim
7071
val value = cookie.substring(index + 1).trim
71-
userInfoAction.addCookie(new Cookie(key, value))
72+
userInfoAction.addCookie(new BasicClientCookie(key, value))
7273
}
7374
val redirectMsg = new RedirectMsgImpl
7475
redirectMsg.setRedirectUrl(request.getParameter(AppJointAuthImpl.REDIRECT_KEY))

dss-appjoint-core/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.7.0</version>
25+
<version>0.8.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

@@ -50,6 +50,12 @@
5050
<artifactId>dss-common</artifactId>
5151
<version>${dss.version}</version>
5252
</dependency>
53+
54+
<dependency>
55+
<groupId>com.webank.wedatasphere.linkis</groupId>
56+
<artifactId>linkis-httpclient</artifactId>
57+
<version>${linkis.version}</version>
58+
</dependency>
5359
</dependencies>
5460

5561

dss-appjoint-loader/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.7.0</version>
25+
<version>0.8.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

2929
<artifactId>dss-appjoint-loader</artifactId>
30-
<version>0.7.0</version>
30+
<version>0.8.0</version>
3131

3232
<dependencies>
3333
<dependency>

0 commit comments

Comments
 (0)