Skip to content

Commit 35d3265

Browse files
committed
Fix build question.
1 parent 5c4d481 commit 35d3265

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

assembly/dss-package/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,16 @@
106106
<artifactId>jackson-databind</artifactId>
107107
<version>${fasterxml.jackson.version}</version>
108108
</dependency>
109-
109+
<dependency>
110+
<groupId>com.fasterxml.jackson.core</groupId>
111+
<artifactId>jackson-core</artifactId>
112+
<version>${fasterxml.jackson.version}</version>
113+
</dependency>
114+
<dependency>
115+
<groupId>com.fasterxml.jackson.core</groupId>
116+
<artifactId>jackson-annotations</artifactId>
117+
<version>${fasterxml.jackson.version}</version>
118+
</dependency>
110119
<dependency>
111120
<groupId>org.apache.commons</groupId>
112121
<artifactId>commons-math3</artifactId>

dss-commons/dss-common/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,16 @@
133133
<groupId>org.springframework</groupId>
134134
<version>${spring-framework.version}</version>
135135
</dependency>
136+
<dependency>
137+
<groupId>org.springframework</groupId>
138+
<artifactId>spring-jdbc</artifactId>
139+
<version>${spring-framework.version}</version>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.springframework</groupId>
143+
<artifactId>spring-tx</artifactId>
144+
<version>${spring-framework.version}</version>
145+
</dependency>
136146
<dependency>
137147
<groupId>org.apache.linkis</groupId>
138148
<artifactId>linkis-module</artifactId>

dss-server/pom.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@
4343
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
4444
<groupId>org.springframework.cloud</groupId>
4545
</exclusion>
46+
<exclusion>
47+
<groupId>com.fasterxml.jackson.core</groupId>
48+
<artifactId>jackson-core</artifactId>
49+
</exclusion>
50+
<exclusion>
51+
<groupId>com.fasterxml.jackson.core</groupId>
52+
<artifactId>jackson-annotations</artifactId>
53+
</exclusion>
4654
</exclusions>
4755
</dependency>
4856
<dependency>
@@ -54,11 +62,27 @@
5462
<groupId>com.webank.wedatasphere.dss</groupId>
5563
<artifactId>dss-framework-orchestrator-server</artifactId>
5664
<version>${dss.version}</version>
65+
<exclusions>
66+
<exclusion>
67+
<groupId>com.fasterxml.jackson.core</groupId>
68+
<artifactId>jackson-core</artifactId>
69+
</exclusion>
70+
<exclusion>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-annotations</artifactId>
73+
</exclusion>
74+
</exclusions>
5775
</dependency>
5876
<dependency>
5977
<groupId>com.webank.wedatasphere.dss</groupId>
6078
<artifactId>dss-workflow-server</artifactId>
6179
<version>${dss.version}</version>
80+
<exclusions>
81+
<exclusion>
82+
<groupId>com.fasterxml.jackson.core</groupId>
83+
<artifactId>jackson-annotations</artifactId>
84+
</exclusion>
85+
</exclusions>
6286
</dependency>
6387
<dependency>
6488
<groupId>com.webank.wedatasphere.dss</groupId>
@@ -75,6 +99,21 @@
7599
<artifactId>dss-scriptis-server</artifactId>
76100
<version>${dss.version}</version>
77101
</dependency>
102+
<dependency>
103+
<groupId>com.webank.wedatasphere.dss</groupId>
104+
<artifactId>dss-user-guide-server</artifactId>
105+
<version>${dss.version}</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>com.fasterxml.jackson.core</groupId>
109+
<artifactId>jackson-core</artifactId>
110+
<version>${fasterxml.jackson.version}</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>com.fasterxml.jackson.core</groupId>
114+
<artifactId>jackson-annotations</artifactId>
115+
<version>${fasterxml.jackson.version}</version>
116+
</dependency>
78117

79118
</dependencies>
80119

0 commit comments

Comments
 (0)