Last active
June 16, 2016 15:59
-
-
Save alirezahajibagheri/0db35ef2f117a5e0e44b0e8a760ec7b3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <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> | |
| <prerequisites> | |
| <maven>3.0.5</maven> | |
| </prerequisites> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-examples</artifactId> | |
| <version>0.4-rc0-SNAPSHOT</version> | |
| <name>DeepLearning4j Examples</name> | |
| <description>Examples of training different data sets</description> | |
| <properties> | |
| <nd4j.backend>nd4j-cuda-7.5</nd4j.backend> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <shadedClassifier>bin</shadedClassifier> | |
| <java.version>1.8</java.version> | |
| <nd4j.version>0.4-rc3.10</nd4j.version> | |
| <dl4j.version>0.4-rc3.10</dl4j.version> | |
| <canova.version>0.0.0.16</canova.version> | |
| <guava.version>19.0</guava.version> | |
| <jfreechart.version>1.0.13</jfreechart.version> | |
| <maven-shade-plugin.version>2.4.3</maven-shade-plugin.version> | |
| <exec-maven-plugin.version>1.4.0</exec-maven-plugin.version> | |
| </properties> | |
| <repositories> | |
| <repository> | |
| <id>snapshots-repo</id> | |
| <url>https://oss.sonatype.org/content/repositories/snapshots</url> | |
| <releases> | |
| <enabled>false</enabled> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| </snapshots> | |
| </repository> | |
| <repository> | |
| <id>scala-tools.org</id> | |
| <name>Scala-tools Maven2 Repository</name> | |
| <url>http://scala-tools.org/repo-releases</url> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>scala-tools.org</id> | |
| <name>Scala-tools Maven2 Repository</name> | |
| <url>http://scala-tools.org/repo-releases</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <distributionManagement> | |
| <snapshotRepository> | |
| <id>sonatype-nexus-snapshots</id> | |
| <name>Sonatype Nexus snapshot repository</name> | |
| <url>https://oss.sonatype.org/content/repositories/snapshots</url> | |
| </snapshotRepository> | |
| <repository> | |
| <id>nexus-releases</id> | |
| <name>Nexus Release Repository</name> | |
| <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | |
| </repository> | |
| </distributionManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.typesafe.akka</groupId> | |
| <artifactId>akka-actor_2.11</artifactId> | |
| <version>2.3.11</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-nlp</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-core</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-ui</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>${guava.version}</version> | |
| </dependency> | |
| <dependency> | |
| <artifactId>canova-nd4j-image</artifactId> | |
| <groupId>org.nd4j</groupId> | |
| <version>${canova.version}</version> | |
| </dependency> | |
| <dependency> | |
| <artifactId>canova-nd4j-codec</artifactId> | |
| <groupId>org.nd4j</groupId> | |
| <version>${canova.version}</version> | |
| </dependency> | |
| <!-- Used in the RegressionMathFunctions example --> | |
| <dependency> | |
| <groupId>jfree</groupId> | |
| <artifactId>jfreechart</artifactId> | |
| <version>${jfreechart.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.hadoop</groupId> | |
| <artifactId>hadoop-client</artifactId> | |
| <version>2.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.scala-lang</groupId> | |
| <artifactId>scala-library</artifactId> | |
| <version>2.10.6</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-core</artifactId> | |
| <version>0.4-rc3.10</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.nd4j</groupId> | |
| <artifactId>nd4j-cuda-7.5</artifactId> | |
| <version>${nd4j.version}</version> | |
| </dependency> | |
| <!-- http://mvnrepository.com/artifact/tw.edu.ntu.csie/libsvm --> | |
| <dependency> | |
| <groupId>tw.edu.ntu.csie</groupId> | |
| <artifactId>libsvm</artifactId> | |
| <version>3.17</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.scala-tools</groupId> | |
| <artifactId>maven-scala-plugin</artifactId> | |
| <version>2.9.1</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.0.2</version> | |
| </plugin> | |
| </plugins> | |
| </pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>exec-maven-plugin</artifactId> | |
| <version>${exec-maven-plugin.version}</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>exec</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <executable>java</executable> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>${maven-shade-plugin.version}</version> | |
| <configuration> | |
| <shadedArtifactAttached>true</shadedArtifactAttached> | |
| <shadedClassifierName>${shadedClassifier}</shadedClassifierName> | |
| <createDependencyReducedPom>true</createDependencyReducedPom> | |
| <filters> | |
| <filter> | |
| <artifact>*:*</artifact> | |
| <excludes> | |
| <exclude>org/datanucleus/**</exclude> | |
| <exclude>META-INF/*.SF</exclude> | |
| <exclude>META-INF/*.DSA</exclude> | |
| <exclude>META-INF/*.RSA</exclude> | |
| </excludes> | |
| </filter> | |
| </filters> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| <configuration> | |
| <transformers> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | |
| <resource>reference.conf</resource> | |
| </transformer> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | |
| </transformer> | |
| </transformers> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.5.1</version> | |
| <configuration> | |
| <source>${java.version}</source> | |
| <target>${java.version}</target> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.scala-tools</groupId> | |
| <artifactId>maven-scala-plugin</artifactId> | |
| <executions> | |
| <execution> | |
| <id>scala-compile-first</id> | |
| <phase>process-resources</phase> | |
| <goals> | |
| <goal>add-source</goal> | |
| <goal>compile</goal> | |
| </goals> | |
| </execution> | |
| <execution> | |
| <id>scala-test-compile</id> | |
| <phase>process-test-resources</phase> | |
| <goals> | |
| <goal>testCompile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> Almost missed one
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance to easy