-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
94 lines (88 loc) · 2.82 KB
/
pom.xml
File metadata and controls
94 lines (88 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>il.co.dsp211.assignment3</groupId>
<artifactId>Semantic-Similarity-Classification-by-various-measures</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Your exact Hadoop version here-->
<hadoop.version>3.2.1</hadoop.version>
</properties>
<developers>
<developer>
<id>ashr</id>
<name>Roy Ash</name>
<email>roy.ash456@gmail.com</email>
<url>https://www.linkedin.com/in/roy-ash</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>Asia/Jerusalem</timezone>
<properties>
<cellphone>+972546815181</cellphone>
</properties>
</developer>
<developer>
<name>Amit Binenfeld</name>
<email>amitbin20@gmail.com</email>
<url>https://www.linkedin.com/in/amit-binenfeld-09301a1b2</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>Asia/Jerusalem</timezone>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-aws</artifactId>
<version>${hadoop.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/nz.ac.waikato.cms.weka/weka-stable -->
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-stable</artifactId>
<version>3.8.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools -->
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.9.3</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
</dependency>
<!-- <!– https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j –>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.logging.log4j</groupId>-->
<!-- <artifactId>log4j</artifactId>-->
<!-- <version>2.14.0</version>-->
<!-- <type>pom</type>-->
<!-- </dependency>-->
</dependencies>
</project>