zoo-core-openvino-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.intel.analytics.zoo</groupId> <artifactId>zoo-core-openvino-parent</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.intel.analytics.zoo</groupId> <artifactId>zoo-core-parent</artifactId> <version>2.3.0</version> </parent> <groupId>com.intel.analytics.zoo</groupId> <artifactId>zoo-core-openvino-parent</artifactId> <packaging>pom</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>linux</id> <modules> <module>openvino-java-linux</module> </modules> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <profile> <id>mac</id> <modules> <module>openvino-java-mac</module> </modules> </profile> <profile> <id>deploy</id> <modules> <module>openvino-java-linux</module> <module>openvino-java-mac</module> </modules> </profile> <profile> <id>sign</id> <modules> <module>openvino-java-linux</module> <module>openvino-java-mac</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>