-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
97 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra"> | ||
<info organisation="Patrick Nicolas" module="scalaml_2.10" revision="0.99" status="release" publication="20151030183016"> | ||
<description> | ||
ScalaMl | ||
</description> | ||
</info> | ||
<configurations> | ||
<conf name="compile" visibility="public" description=""/> | ||
<conf name="runtime" visibility="public" description="" extends="compile"/> | ||
<conf name="test" visibility="public" description="" extends="runtime"/> | ||
<conf name="provided" visibility="public" description=""/> | ||
<conf name="optional" visibility="public" description=""/> | ||
|
||
|
||
|
||
|
||
<conf name="sources" visibility="public" description=""/> | ||
<conf name="docs" visibility="public" description=""/> | ||
<conf name="pom" visibility="public" description=""/> | ||
|
||
</configurations> | ||
<publications> | ||
<artifact name="scalaml_2.10" type="pom" ext="pom" conf="pom"/> | ||
<artifact name="scalaml_2.10" type="jar" ext="jar" conf="compile"/> | ||
<artifact name="scalaml_2.10" type="src" ext="jar" conf="sources" e:classifier="sources"/> | ||
<artifact name="scalaml_2.10" type="doc" ext="jar" conf="docs" e:classifier="javadoc"/> | ||
</publications> | ||
<dependencies> | ||
|
||
<dependency org="org.scala-lang" name="scala-library" rev="2.10.4" conf="compile->default(compile)"/> | ||
<dependency org="org.apache.commons" name="commons-math3" rev="3.5" conf="compile->default(compile)"/> | ||
<dependency org="org.jfree" name="jfreechart" rev="1.0.17" conf="compile->default(compile)"/> | ||
<dependency org="com.typesafe.akka" name="akka-actor_2.10" rev="2.3.4" conf="compile->default(compile)"/> | ||
<dependency org="org.apache.spark" name="spark-core_2.10" rev="1.5.0" conf="compile->default(compile)"/> | ||
<dependency org="org.apache.spark" name="spark-mllib_2.10" rev="1.5.0" conf="compile->default(compile)"/> | ||
<dependency org="org.scalatest" name="scalatest_2.10" rev="2.2.2" conf="compile->default(compile)"/> | ||
</dependencies> | ||
</ivy-module> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,58 @@ | ||
<?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>Patrick Nicolas</groupId> | ||
<artifactId>scalaml_2.10</artifactId> | ||
<packaging>jar</packaging> | ||
<description>ScalaMl</description> | ||
<version>0.99</version> | ||
<name>ScalaMl</name> | ||
<organization> | ||
<name>Patrick Nicolas</name> | ||
</organization> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.scala-lang</groupId> | ||
<artifactId>scala-library</artifactId> | ||
<version>2.10.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-math3</artifactId> | ||
<version>3.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jfree</groupId> | ||
<artifactId>jfreechart</artifactId> | ||
<version>1.0.17</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.typesafe.akka</groupId> | ||
<artifactId>akka-actor_2.10</artifactId> | ||
<version>2.3.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.spark</groupId> | ||
<artifactId>spark-core_2.10</artifactId> | ||
<version>1.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.spark</groupId> | ||
<artifactId>spark-mllib_2.10</artifactId> | ||
<version>1.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.scalatest</groupId> | ||
<artifactId>scalatest_2.10</artifactId> | ||
<version>2.2.2</version> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<id>AkkaRepository</id> | ||
<name>Akka Repository</name> | ||
<url>http://repo.akka.io/releases/</url> | ||
<layout>default</layout> | ||
</repository> | ||
</repositories> | ||
</project> |