This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
57 lines (52 loc) · 1.73 KB
/
pom.xml
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
<?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>org.rawkintrevo.cylon</groupId>
<artifactId>cylon</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>common</module>
<!--<module>dronecam2kafka</module>-->
<module>frameprocessors</module>
<module>local-engine</module>
<module>httpserver</module>
<module>flink-engine</module>
<!--<module>flink-faces-demo</module>-->
<module>eigenfaces</module>
<module>examples</module>
</modules>
<properties>
<scala.version>2.11.8</scala.version>
<scala.compat.version>2.11</scala.compat.version>
<mahout.version>0.13.1-SNAPSHOT</mahout.version>
<!-- but spark 2.1 is so grrrreat. They monkeyed with the was sc.binaryFiles works and
I can't get the image files to load more than -->
<spark.version>2.0.2</spark.version>
<spark.compat.version>2.0</spark.compat.version>
</properties>
<build>
<plugins>
<!-- Fat Jar -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>fat-jar</id>
<!--<phase>package</phase>-->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>