cbuffer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>xyz.cofe</groupId>
<artifactId>cbuffer</artifactId>
<version>2.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>
<artifactId>next-parent</artifactId>
<groupId>xyz.cofe</groupId>
<version>1.2</version>
<relativePath>../next-parent/pom.xml</relativePath>
</parent>
<artifactId>cbuffer</artifactId>
<version>2.0</version>
<name>cbuffer</name>
<description>byte array manipulations, data paging</description>
<dependencies>
<dependency>
<groupId>xyz.cofe</groupId>
<artifactId>ecolls</artifactId>
<version>[1.12,2.0)</version>
</dependency>
<dependency>
<groupId>xyz.cofe</groupId>
<artifactId>iofun</artifactId>
<version>[1.0,)</version>
</dependency>
<dependency>
<groupId>xyz.cofe</groupId>
<artifactId>text</artifactId>
<version>[1.0,)</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<source>11</source>
</configuration>
</plugin>
</plugins>
</build>
</project>