2020-05-29 10:01:02 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-02-01 06:31:20 +01:00
|
|
|
<!--
|
|
|
|
~ /* ******************************************************************************
|
|
|
|
~ *
|
|
|
|
~ *
|
|
|
|
~ * This program and the accompanying materials are made available under the
|
|
|
|
~ * terms of the Apache License, Version 2.0 which is available at
|
|
|
|
~ * https://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
~ *
|
2021-02-01 09:47:29 +01:00
|
|
|
~ * See the NOTICE file distributed with this work for additional
|
|
|
|
~ * information regarding copyright ownership.
|
2021-02-01 06:31:20 +01:00
|
|
|
~ * Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
~ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
~ * License for the specific language governing permissions and limitations
|
|
|
|
~ * under the License.
|
|
|
|
~ *
|
|
|
|
~ * SPDX-License-Identifier: Apache-2.0
|
|
|
|
~ ******************************************************************************/
|
|
|
|
-->
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-05-29 10:01:02 +02:00
|
|
|
<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>
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>org.nd4j</groupId>
|
2020-05-29 10:01:02 +02:00
|
|
|
<artifactId>nd4j</artifactId>
|
2019-06-06 14:21:15 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nd4j-parameter-server-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>nd4j-parameter-server-parent</name>
|
|
|
|
|
2020-05-29 10:01:02 +02:00
|
|
|
<modules>
|
|
|
|
<module>nd4j-parameter-server</module>
|
|
|
|
<module>nd4j-parameter-server-client</module>
|
|
|
|
<module>nd4j-parameter-server-model</module>
|
|
|
|
<module>nd4j-parameter-server-rocksdb-storage</module>
|
|
|
|
<module>nd4j-parameter-server-node</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2021-02-01 06:31:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-aeron</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-05-29 10:01:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-common-tests</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-parameter-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-02-01 06:31:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-parameter-server-model</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mashape.unirest</groupId>
|
|
|
|
<artifactId>unirest-java</artifactId>
|
|
|
|
<version>${unirest.version}</version>
|
|
|
|
</dependency>
|
2020-05-29 10:01:02 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Build helper plugin: used to add the multiple independent source directories (Java, Scala, HTML templates) -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src/main/java</source>
|
|
|
|
<source>src/main/scala</source>
|
|
|
|
<source>src/main/views</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.play2-maven-plugin</groupId>
|
|
|
|
<artifactId>play2-maven-plugin</artifactId>
|
|
|
|
<version>${maven-play2-plugin.version}</version>
|
|
|
|
<!-- Generate Scala Page Templates
|
|
|
|
The Play framework template engine ("twirl") uses templates for HTML pages (or in principle any text-based
|
|
|
|
data: CSV, XML etc). These templates (*.scala.html files) need to be converted to Scala classes using
|
|
|
|
code generation. This is done during the Maven compile phase.
|
|
|
|
However, the Maven Play framework plugin does not allow proper customization of the output directory. Thus,
|
|
|
|
we generate these Scala classes in the default location (in the target/twirl/main/ directory) and use the
|
|
|
|
maven resources plugin to copy them to the actual location we want.
|
|
|
|
To generate the latest versions of these templates (after modifying or adding a new template), just run
|
|
|
|
"mvn compile" in either the main project directory, or within the deeplearning4j ui module separately.
|
|
|
|
-->
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>GenerateTemplates</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>template-compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.sbt-compiler-maven-plugin</groupId>
|
|
|
|
<artifactId>sbt-compiler-maven-plugin</artifactId>
|
|
|
|
<version>${sbt-compiler-maven-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk9</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>1.9</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>testresources</id>
|
|
|
|
</profile>
|
2021-03-19 00:16:40 +01:00
|
|
|
<profile>
|
|
|
|
<id>nd4j-tests-cpu</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.deeplearning4j</groupId>
|
|
|
|
<artifactId>dl4j-test-resources</artifactId>
|
|
|
|
<version>${dl4j-test-resources.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-native</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<!-- For running unit tests with nd4j-cuda-${CUDA_VERSION}: "mvn clean test -P test-nd4j-cuda-${CUDA_VERSION}" -->
|
|
|
|
<profile>
|
|
|
|
<id>nd4j-tests-cuda</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.deeplearning4j</groupId>
|
|
|
|
<artifactId>dl4j-test-resources</artifactId>
|
|
|
|
<version>${dl4j-test-resources.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-cuda-11.0</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-06-06 14:21:15 +02:00
|
|
|
</profiles>
|
|
|
|
</project>
|