oryx-serving
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cloudera.oryx</groupId>
<artifactId>oryx-serving</artifactId>
<version>2.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>oryx</artifactId>
<groupId>com.cloudera.oryx</groupId>
<version>2.8.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>oryx-serving</artifactId>
<name>Serving Layer</name>
<version>2.8.0</version>
<description>Complete packaged serving layer binary, including project implementations of
machine learning algorithms' serving component</description>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>shade</id>
<phase>${shadePhase}</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<manifestEntries>
<Main-Class>com.cloudera.oryx.serving.Main</Main-Class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>app-tier</id>
<dependencies>
<dependency>
<groupId>com.cloudera.oryx</groupId>
<artifactId>oryx-app-api</artifactId>
<version>2.8.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.cloudera.oryx</groupId>
<artifactId>oryx-app-serving</artifactId>
<version>2.8.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>