From e50f8196aacbe56de6f8f0a9eb2762d59e9de2ce Mon Sep 17 00:00:00 2001 From: Kevin Herron Date: Tue, 30 Dec 2025 10:56:05 -0800 Subject: [PATCH 1/4] Set version to 0.2.0-SNAPSHOT, fix group/artifact ids --- byteops-milo/pom.xml | 6 +++--- byteops-netty/pom.xml | 8 ++++---- byteops-unsigned/pom.xml | 6 +++--- byteops/pom.xml | 4 ++-- pom.xml | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/byteops-milo/pom.xml b/byteops-milo/pom.xml index 6b121ad..3a1a7f4 100644 --- a/byteops-milo/pom.xml +++ b/byteops-milo/pom.xml @@ -4,9 +4,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.digitalpetri.util + com.digitalpetri.byteops byteops-parent - 0.1.4-SNAPSHOT + 0.2.0-SNAPSHOT byteops-milo @@ -19,7 +19,7 @@ - com.digitalpetri.util + com.digitalpetri.byteops byteops ${project.version} diff --git a/byteops-netty/pom.xml b/byteops-netty/pom.xml index fcba38b..c7a1b82 100644 --- a/byteops-netty/pom.xml +++ b/byteops-netty/pom.xml @@ -4,9 +4,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.digitalpetri.util + com.digitalpetri.byteops byteops-parent - 0.1.4-SNAPSHOT + 0.2.0-SNAPSHOT byteops-netty @@ -19,7 +19,7 @@ - com.digitalpetri.util + com.digitalpetri.byteops byteops ${project.version} @@ -34,7 +34,7 @@ - com.digitalpetri.util + com.digitalpetri.byteops byteops ${project.version} test-jar diff --git a/byteops-unsigned/pom.xml b/byteops-unsigned/pom.xml index a3064a6..f472fdb 100644 --- a/byteops-unsigned/pom.xml +++ b/byteops-unsigned/pom.xml @@ -4,9 +4,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.digitalpetri.util + com.digitalpetri.byteops byteops-parent - 0.1.4-SNAPSHOT + 0.2.0-SNAPSHOT byteops-unsigned @@ -19,7 +19,7 @@ - com.digitalpetri.util + com.digitalpetri.byteops byteops ${project.version} diff --git a/byteops/pom.xml b/byteops/pom.xml index 9f2d138..c723896 100644 --- a/byteops/pom.xml +++ b/byteops/pom.xml @@ -4,9 +4,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.digitalpetri.util + com.digitalpetri.byteops byteops-parent - 0.1.4-SNAPSHOT + 0.2.0-SNAPSHOT byteops diff --git a/pom.xml b/pom.xml index 4763ea5..95ad124 100644 --- a/pom.xml +++ b/pom.xml @@ -4,12 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.digitalpetri.util + com.digitalpetri.byteops byteops-parent - 0.1.4-SNAPSHOT + 0.2.0-SNAPSHOT pom - byteops + ByteOps :: Parent Utility functions for getting values from and setting values into collections of bytes. From f295ec324b83b10b2825a4b650ec3080576c9f62 Mon Sep 17 00:00:00 2001 From: Kevin Herron Date: Tue, 30 Dec 2025 11:59:49 -0800 Subject: [PATCH 2/4] Add Maven Central publishing profile to all modules --- byteops-milo/pom.xml | 14 ++++++++++++++ byteops-netty/pom.xml | 13 +++++++++++++ byteops-unsigned/pom.xml | 13 +++++++++++++ byteops/pom.xml | 14 ++++++++++++++ 4 files changed, 54 insertions(+) diff --git a/byteops-milo/pom.xml b/byteops-milo/pom.xml index 3a1a7f4..29d4f06 100644 --- a/byteops-milo/pom.xml +++ b/byteops-milo/pom.xml @@ -43,4 +43,18 @@ test + + + + release + + + + org.sonatype.central + central-publishing-maven-plugin + + + + + diff --git a/byteops-netty/pom.xml b/byteops-netty/pom.xml index c7a1b82..aa4c3aa 100644 --- a/byteops-netty/pom.xml +++ b/byteops-netty/pom.xml @@ -51,4 +51,17 @@ + + + release + + + + org.sonatype.central + central-publishing-maven-plugin + + + + + diff --git a/byteops-unsigned/pom.xml b/byteops-unsigned/pom.xml index f472fdb..ea452b5 100644 --- a/byteops-unsigned/pom.xml +++ b/byteops-unsigned/pom.xml @@ -45,4 +45,17 @@ + + + release + + + + org.sonatype.central + central-publishing-maven-plugin + + + + + diff --git a/byteops/pom.xml b/byteops/pom.xml index c723896..4472551 100644 --- a/byteops/pom.xml +++ b/byteops/pom.xml @@ -50,4 +50,18 @@ + + + + release + + + + org.sonatype.central + central-publishing-maven-plugin + + + + + From 5af8348cf907c45fef610aefedf83a0ccc49d941 Mon Sep 17 00:00:00 2001 From: Kevin Herron Date: Tue, 30 Dec 2025 11:02:33 -0800 Subject: [PATCH 3/4] Set version to 0.2.1 --- byteops-milo/pom.xml | 2 +- byteops-netty/pom.xml | 2 +- byteops-unsigned/pom.xml | 2 +- byteops/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/byteops-milo/pom.xml b/byteops-milo/pom.xml index 29d4f06..1507f65 100644 --- a/byteops-milo/pom.xml +++ b/byteops-milo/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.0-SNAPSHOT + 0.2.1 byteops-milo diff --git a/byteops-netty/pom.xml b/byteops-netty/pom.xml index aa4c3aa..37703c9 100644 --- a/byteops-netty/pom.xml +++ b/byteops-netty/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.0-SNAPSHOT + 0.2.1 byteops-netty diff --git a/byteops-unsigned/pom.xml b/byteops-unsigned/pom.xml index ea452b5..bc73513 100644 --- a/byteops-unsigned/pom.xml +++ b/byteops-unsigned/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.0-SNAPSHOT + 0.2.1 byteops-unsigned diff --git a/byteops/pom.xml b/byteops/pom.xml index 4472551..81920c4 100644 --- a/byteops/pom.xml +++ b/byteops/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.0-SNAPSHOT + 0.2.1 byteops diff --git a/pom.xml b/pom.xml index 95ad124..4709855 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.0-SNAPSHOT + 0.2.1 pom ByteOps :: Parent From 29d55ca570257a8e1a9857d0576bb51bbb1c165f Mon Sep 17 00:00:00 2001 From: Kevin Herron Date: Tue, 30 Dec 2025 12:59:19 -0800 Subject: [PATCH 4/4] Set version to 0.2.2-SNAPSHOT --- byteops-milo/pom.xml | 2 +- byteops-netty/pom.xml | 2 +- byteops-unsigned/pom.xml | 2 +- byteops/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/byteops-milo/pom.xml b/byteops-milo/pom.xml index 1507f65..a2256b2 100644 --- a/byteops-milo/pom.xml +++ b/byteops-milo/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.1 + 0.2.2-SNAPSHOT byteops-milo diff --git a/byteops-netty/pom.xml b/byteops-netty/pom.xml index 37703c9..fa4727f 100644 --- a/byteops-netty/pom.xml +++ b/byteops-netty/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.1 + 0.2.2-SNAPSHOT byteops-netty diff --git a/byteops-unsigned/pom.xml b/byteops-unsigned/pom.xml index bc73513..61d115f 100644 --- a/byteops-unsigned/pom.xml +++ b/byteops-unsigned/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.1 + 0.2.2-SNAPSHOT byteops-unsigned diff --git a/byteops/pom.xml b/byteops/pom.xml index 81920c4..fa52840 100644 --- a/byteops/pom.xml +++ b/byteops/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.1 + 0.2.2-SNAPSHOT byteops diff --git a/pom.xml b/pom.xml index 4709855..45acc5e 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.digitalpetri.byteops byteops-parent - 0.2.1 + 0.2.2-SNAPSHOT pom ByteOps :: Parent