Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit 984c4d4

Browse files
authored
Merge pull request #28 from imghasemi/develop
Instructions to solve the problem of building up the project with Maven
2 parents a018292 + 09f3a71 commit 984c4d4

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
</dependency>
161161

162162
<!-- Guava -->
163-
<!-- <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId>
163+
<!-- <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId>
164164
<version>19.0</version> </dependency> -->
165165

166166
<!-- RDF Layer -->
@@ -239,6 +239,12 @@
239239
<scope>import</scope>
240240
</dependency>
241241

242+
<!-- Commons-codec dependency: solve the issue of making clean install-->
243+
<dependency>
244+
<groupId>commons-codec</groupId>
245+
<artifactId>commons-codec</artifactId>
246+
<version>1.11</version>
247+
</dependency>
242248

243249
</dependencies>
244250
</dependencyManagement>

sansa-examples-spark/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@
146146
<artifactId>scopt_${scala.binary.version}</artifactId>
147147
</dependency>
148148

149+
<!-- Commons-codec dependency: solve the issue related building the docker-->
150+
<dependency>
151+
<groupId>commons-codec</groupId>
152+
<artifactId>commons-codec</artifactId>
153+
<version>1.11</version>
154+
</dependency>
149155
<!--
150156
<dependency>
151157
<groupId>com.holdenkarau</groupId>

0 commit comments

Comments
 (0)