-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(sindy): copy over SINDY algorithm from https://github.com/sekru…
- Loading branch information
Sebastian Kruse
committed
Aug 31, 2016
1 parent
9a8595c
commit 6d0e154
Showing
4 changed files
with
493 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
|
||
<modules> | ||
<module>wordcount</module> | ||
<module>sindy</module> | ||
<module>pagerank</module> | ||
</modules> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
target/ | ||
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
pom.xml.next | ||
release.properties | ||
dependency-reduced-pom.xml | ||
buildNumber.properties | ||
.mvn/timing.properties | ||
|
||
# IntelliJ | ||
.idea/ | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
<?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> | ||
|
||
<parent> | ||
<groupId>com.github.sekruse</groupId> | ||
<artifactId>rheem-examples</artifactId> | ||
<version>1.0</version> | ||
</parent> | ||
<artifactId>sindy</artifactId> | ||
|
||
<!-- Add a Scala compiler for our app. --> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>net.alchim31.maven</groupId> | ||
<artifactId>scala-maven-plugin</artifactId> | ||
<version>3.2.2</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>compile</goal> | ||
<goal>testCompile</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<scalaVersion>${scala.version}</scalaVersion> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>net.alchim31.maven</groupId> | ||
<artifactId>scala-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- Make various Rheem modules available for our app. --> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-core</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-basic</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-java</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-spark</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-api</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-sqlite3</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
|
||
<!-- Other Rheem modules that we don't need... | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-graphchi</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.qcri.rheem</groupId> | ||
<artifactId>rheem-postgres</artifactId> | ||
<version>${rheem.version}</version> | ||
</dependency> | ||
--> | ||
|
||
<!-- We need to import the actual versions of execution platforms that we want to use. --> | ||
<dependency> | ||
<groupId>org.apache.spark</groupId> | ||
<artifactId>spark-core_${scala.compat.version}</artifactId> | ||
<version>${spark.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
<scope>${external.platforms.scope}</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.spark</groupId> | ||
<artifactId>spark-graphx_${scala.compat.version}</artifactId> | ||
<version>${spark.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
<scope>${external.platforms.scope}</scope> | ||
</dependency> | ||
|
||
<!-- Apache Hadoop --> | ||
<dependency> | ||
<groupId>org.apache.hadoop</groupId> | ||
<artifactId>hadoop-hdfs</artifactId> | ||
<scope>${external.platforms.scope}</scope> | ||
<version>${hadoop.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-daemon</groupId> | ||
<artifactId>commons-daemon</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.avro</groupId> | ||
<artifactId>avro</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>jetty</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-core</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-server</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.servlet.jsp</groupId> | ||
<artifactId>jsp-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>tomcat</groupId> | ||
<artifactId>jasper-runtime</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.hadoop</groupId> | ||
<artifactId>hadoop-common</artifactId> | ||
<scope>${external.platforms.scope}</scope> | ||
<version>${hadoop.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>tomcat</groupId> | ||
<artifactId>jasper-compiler</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>tomcat</groupId> | ||
<artifactId>jasper-runtime</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.servlet.jsp</groupId> | ||
<artifactId>jsp-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>jetty</groupId> | ||
<artifactId>org.mortbay.jetty</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>jetty</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>jetty-util</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>jsp-api-2.1</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>servlet-api-2.5</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-core</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-json</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-server</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.eclipse.jdt</groupId> | ||
<artifactId>core</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.avro</groupId> | ||
<artifactId>avro-ipc</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>net.sf.kosmosfs</groupId> | ||
<artifactId>kfs</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>net.java.dev.jets3t</groupId> | ||
<artifactId>jets3t</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.jcraft</groupId> | ||
<artifactId>jsch</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>commons-el</groupId> | ||
<artifactId>commons-el</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<!-- Other libraries we need for our app. --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>1.7.13</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
</project> |
Oops, something went wrong.