com.io7m.jtensors.storage.bytebuffered
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.io7m.jtensors</groupId> <artifactId>com.io7m.jtensors.storage.bytebuffered</artifactId> <version>11.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.io7m.jtensors</groupId> <artifactId>com.io7m.jtensors</artifactId> <version>11.0.0</version> </parent> <artifactId>com.io7m.jtensors.storage.bytebuffered</artifactId> <packaging>jar</packaging> <name>com.io7m.jtensors.storage.bytebuffered</name> <description>Vector/matrix math package (ByteBuffered tensor storage implementations) </description> <url>https://www.io7m.com/software/jtensors</url> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>com.io7m.jtensors.core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>com.io7m.jtensors.storage.api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.bundle</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.versioning</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.io7m.mutable.numbers</groupId> <artifactId>com.io7m.mutable.numbers.core</artifactId> </dependency> <dependency> <groupId>com.io7m.junreachable</groupId> <artifactId>com.io7m.junreachable.core</artifactId> </dependency> <dependency> <groupId>com.io7m.ieee754b16</groupId> <artifactId>com.io7m.ieee754b16.core</artifactId> </dependency> </dependencies> <build> <plugins> <!-- Ignore dependencies that bytecode analysis gets wrong. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <failOnWarning>true</failOnWarning> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>org.immutables:value:*</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> </plugins> </build> </project>