fountain
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.yrichika</groupId>
<artifactId>fountain</artifactId>
<version>0.1.0</version>
</dependency><?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.yrichika</groupId>
<artifactId>fountain</artifactId>
<packaging>jar</packaging>
<description>This program will start a simple streaming server which will send text data from a specified file. This makes it easier to test Spark Streaming. A simple substitution for netcat.</description>
<url>https://github.com/yrichika/fountain</url>
<version>0.1.0</version>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<name>fountain</name>
<organization>
<name>yrichika</name>
<url>https://github.com/yrichika</url>
</organization>
<scm>
<url>https://github.com/yrichika/fountain</url>
<connection>scm:git@github.com:yrichika/fountain.git</connection>
</scm>
<developers>
<developer>
<id>yrichika</id>
<name>yrichika</name>
<url>https://github.com/yrichika</url>
<email>yrichikapub@gmail.com</email>
</developer>
</developers>
<properties>
<info.versionScheme>semver-spec</info.versionScheme>
<extraDependencyAttributes xml:space="preserve">+e:sbtVersion:#@#:+1.0:#@#:+module:#@#:+sbt-pgp:#@#:+e:scalaVersion:#@#:+2.12:#@#:+organisation:#@#:+com.github.sbt:#@#:+branch:#@#:+@#:NULL:#@:#@#:+revision:#@#:+2.1.2:#@#:</extraDependencyAttributes>
</properties>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.12.15</version>
</dependency>
<dependency>
<groupId>com.github.sbt</groupId>
<artifactId>sbt-pgp</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream_2.12</artifactId>
<version>2.6.16</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream-testkit_2.12</artifactId>
<version>2.6.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.12</artifactId>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.12</artifactId>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_2.12</artifactId>
<version>3.1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scalactic</groupId>
<artifactId>scalactic_2.12</artifactId>
<version>3.2.9</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.12</artifactId>
<version>3.2.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>