Skip to content

Commit 628de29

Browse files
authored
Add byteops-milo module for Eclipse Milo unsigned types (#13)
New module provides MiloByteOps<T> wrapper class for working with Eclipse Milo's unsigned types (UByte, UShort, UInteger, ULong). Follows the same delegation pattern as byteops-unsigned.
1 parent 5e5e91a commit 628de29

5 files changed

Lines changed: 787 additions & 0 deletions

File tree

byteops-milo/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.digitalpetri.util</groupId>
8+
<artifactId>byteops-parent</artifactId>
9+
<version>0.1.4-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>byteops-milo</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.digitalpetri.util</groupId>
17+
<artifactId>byteops</artifactId>
18+
<version>${project.version}</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>org.eclipse.milo</groupId>
22+
<artifactId>milo-stack-core</artifactId>
23+
<version>${milo.version}</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.jspecify</groupId>
27+
<artifactId>jspecify</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.junit.jupiter</groupId>
31+
<artifactId>junit-jupiter-api</artifactId>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.junit.jupiter</groupId>
36+
<artifactId>junit-jupiter-engine</artifactId>
37+
<scope>test</scope>
38+
</dependency>
39+
</dependencies>
40+
</project>

0 commit comments

Comments
 (0)