bigquant-java-mac
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.intel.analytics.bigdl.core.native.bigquant</groupId>
<artifactId>bigquant-java-mac</artifactId>
<version>2.3.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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>bigquant-parent</artifactId>
<groupId>com.intel.analytics.bigdl.core.native</groupId>
<version>2.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.intel.analytics.bigdl.core.native.bigquant</groupId>
<artifactId>bigquant-java-mac</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<properties>
<make_exe>make</make_exe>
</properties>
<build>
<sourceDirectory>../src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${make_exe}</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>