Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>com.formulasearchengine.mathosphere</groupId> | |
<artifactId>mathosphere-parent</artifactId> | |
<version>3.0.0-SNAPSHOT</version> | |
<relativePath>..</relativePath> | |
</parent> | |
<artifactId>mathosphere-core</artifactId> | |
<packaging>jar</packaging> | |
<name>Mathosphere 2</name> | |
<description>Batch processing and evaluation of Math queries</description> | |
<url>http://www.formulasearchengine.com/Mathosphere</url> | |
<licenses> | |
<license> | |
<name>The Apache License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
</license> | |
</licenses> | |
<repositories> | |
<repository> | |
<id>www2.ph.ed.ac.uk-releases</id> | |
<url>http://www2.ph.ed.ac.uk/maven2</url> | |
</repository> | |
<repository> | |
<id>apache.snapshots</id> | |
<name>Apache Development Snapshot Repository</name> | |
<url>https://repository.apache.org/content/repositories/snapshots/</url> | |
<releases> | |
<enabled>false</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<dependencies> | |
<!-- Logging via log4j2 --> | |
<dependency> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-api</artifactId> | |
<version>2.10.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-core</artifactId> | |
<version>2.10.0</version> | |
</dependency> | |
<dependency> <!-- Redirect log4j logging to version 2 --> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-1.2-api</artifactId> | |
<version>2.10.0</version> | |
</dependency> | |
<!--dependency> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-slf4j-impl</artifactId> | |
<version>2.10.0</version> | |
</dependency--> | |
<!-- Other things --> | |
<dependency> | |
<groupId>com.formulasearchengine.evaluation</groupId> | |
<artifactId>evaluation</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.12</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>23.0</version> | |
</dependency> | |
<dependency> | |
<groupId>net.sf.saxon</groupId> | |
<artifactId>Saxon-HE</artifactId> | |
<version>9.5.1-6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.formulasearchengine</groupId> | |
<artifactId>mathmltools</artifactId> | |
<version>0.3.1-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>cz.muni.fi.mir</groupId> | |
<artifactId>mathml-canonicalizer</artifactId> | |
<version>1.2-Mathosphere-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-lang3</artifactId> | |
<version>3.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.fusesource.wikitext</groupId> | |
<artifactId>wikitext-core</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.fusesource.wikitext</groupId> | |
<artifactId>mediawiki-core</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>com.beust</groupId> | |
<artifactId>jcommander</artifactId> | |
<version>1.72</version> | |
</dependency> | |
<dependency> | |
<groupId>org.sweble.wikitext</groupId> | |
<artifactId>swc-engine</artifactId> | |
<version>3.1.5</version> | |
</dependency> | |
<!-- Flink --> | |
<dependency> | |
<groupId>org.apache.flink</groupId> | |
<artifactId>flink-java</artifactId> | |
<version>${flink.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.flink</groupId> | |
<artifactId>flink-streaming-java_2.10</artifactId> | |
<version>${flink.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.flink</groupId> | |
<artifactId>flink-clients_2.10</artifactId> | |
<version>${flink.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>nz.ac.waikato.cms.weka</groupId> | |
<artifactId>LibSVM</artifactId> | |
<version>1.0.10</version> | |
</dependency> | |
<dependency> | |
<groupId>nz.ac.waikato.cms.weka</groupId> | |
<artifactId>SMOTE</artifactId> | |
<version>1.0.3</version> | |
</dependency> | |
<dependency> | |
<groupId>nz.ac.waikato.cms.weka</groupId> | |
<artifactId>weka-stable</artifactId> | |
<version>3.8.1</version> | |
</dependency> | |
<dependency> | |
<groupId>uk.ac.ed.ph.snuggletex</groupId> | |
<artifactId>snuggletex-core</artifactId> | |
<version>1.2.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.alexeygrigorev</groupId> | |
<artifactId>rseq</artifactId> | |
<version>0.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.jr</groupId> | |
<artifactId>jackson-jr-objects</artifactId> | |
<version>2.5.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.github.java-json-tools</groupId> | |
<artifactId>json-schema-validator</artifactId> | |
<version>2.2.8</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>edu.stanford.nlp</groupId> | |
<artifactId>stanford-corenlp</artifactId> | |
<version>3.5.2</version> | |
</dependency> | |
<dependency> | |
<groupId>edu.stanford.nlp</groupId> | |
<artifactId>stanford-corenlp</artifactId> | |
<version>3.5.2</version> | |
<classifier>models</classifier> <!-- English models --> | |
</dependency> | |
<dependency> | |
<groupId>edu.stanford.nlp</groupId> | |
<artifactId>stanford-corenlp</artifactId> | |
<version>3.5.2</version> | |
<classifier>models-german</classifier> <!-- German models --> | |
</dependency> | |
<dependency> | |
<groupId>com.jcabi</groupId> | |
<artifactId>jcabi-xml</artifactId> | |
<version>0.20</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-csv</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>net.sf.json-lib</groupId> | |
<artifactId>json-lib</artifactId> | |
<version>2.4</version> | |
<classifier>jdk15</classifier> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.datatype</groupId> | |
<artifactId>jackson-datatype-guava</artifactId> | |
<version>${jackson.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-io</groupId> | |
<artifactId>commons-io</artifactId> | |
<version>2.5</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hamcrest</groupId> | |
<artifactId>hamcrest-all</artifactId> | |
<version>1.3</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpclient</artifactId> | |
<version>4.5.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpclient-cache</artifactId> | |
<version>4.5.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-text</artifactId> | |
<version>1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-text</artifactId> | |
<version>1.0</version> | |
</dependency> | |
</dependencies> | |
<developers> | |
<developer> | |
<name>Moritz Schubotz</name> | |
<email>wiki@physikerwelt.de</email> | |
<organization>TU Berlin</organization> | |
<organizationUrl>http://www.tu-berlin.de</organizationUrl> | |
</developer> | |
<developer> | |
<name>Jimmy Li</name> | |
<email>jimmy.jiajian.li@gmail.com</email> | |
<organization>Johns Hopkins University</organization> | |
</developer> | |
<developer> | |
<name>Felix Hamborg</name> | |
<email>felix@hamborg.eu</email> | |
<organization>University of Konstanz</organization> | |
</developer> | |
</developers> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.20</version> | |
<configuration> | |
<includes> | |
<include>%regex[.*mathpd.*]</include> | |
</includes> | |
</configuration> | |
</plugin> | |
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<configuration> | |
<archive> | |
<manifest> | |
<addClasspath>true</addClasspath> | |
<mainClass>com.formulasearchengine.mathosphere.mlp.Main</mainClass> | |
</manifest> | |
</archive> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |