diff --git a/.github/workflows/Tools.java b/.github/workflows/Tools.java new file mode 100644 index 0000000..32c63c3 --- /dev/null +++ b/.github/workflows/Tools.java @@ -0,0 +1,162 @@ +/* + * Copyright © 2024 Mark Raynsford https://www.io7m.com + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; + +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.xpath.XPathConstants; +import javax.xml.xpath.XPathFactory; +import java.io.File; +import java.io.IOException; +import java.util.List; +import java.util.TreeMap; + +public final class Tools +{ + private static final TreeMap OPS = + new TreeMap<>(); + + static { + final var opsList = List.of( + new ShowProjectVersion(), + new ShowProjectIsSnapshot() + ); + + for (final var op : opsList) { + OPS.put(op.name(), op); + } + } + + private Tools() + { + + } + + private interface OpType + { + String name(); + + void execute(String[] args) + throws Exception; + } + + private static String getProjectVersion( + final File file) + throws Exception + { + final var documentBuilders = + DocumentBuilderFactory.newInstance(); + final var documentBuilder = + documentBuilders.newDocumentBuilder(); + final var document = + documentBuilder.parse(file); + + final var xPathFactory = + XPathFactory.newInstance(); + final var xPath = + xPathFactory.newXPath(); + + final var nodes = + (NodeList) xPath.evaluate( + "//project/version", + document, + XPathConstants.NODESET + ); + + for (var i = 0; i < nodes.getLength(); i++) { + final var node = nodes.item(i); + if (node.getNodeType() == Node.ELEMENT_NODE) { + return node.getTextContent().trim(); + } + } + + throw new IOException( + "Could not locate a //project/version node!" + ); + } + + private static final class ShowProjectVersion implements OpType + { + ShowProjectVersion() + { + + } + + @Override + public String name() + { + return "ShowProjectVersion"; + } + + @Override + public void execute( + final String[] args) + throws Exception + { + System.out.print("IO7M_PROJECT_VERSION="); + System.out.println(getProjectVersion(new File(args[1]))); + } + } + + private static final class ShowProjectIsSnapshot implements OpType + { + ShowProjectIsSnapshot() + { + + } + + @Override + public String name() + { + return "ShowProjectIsSnapshot"; + } + + @Override + public void execute( + final String[] args) + throws Exception + { + System.out.print("IO7M_PROJECT_VERSION_IS_SNAPSHOT="); + System.out.println( + getProjectVersion(new File(args[1])).endsWith("-SNAPSHOT") + ); + } + } + + public static void main( + final String[] args) + throws Exception + { + if (args.length == 0) { + System.err.println("Usage: command"); + System.exit(1); + } + + final var op = OPS.get(args[0]); + if (op == null) { + System.err.println("Unrecognized command."); + System.err.println(" Must be one of:"); + for (final var name : OPS.keySet()) { + System.err.print(" "); + System.err.println(name); + } + System.exit(1); + } + + op.execute(args); + } +} \ No newline at end of file diff --git a/.github/workflows/deploy-release.sh b/.github/workflows/deploy-release.sh new file mode 100755 index 0000000..e25fc82 --- /dev/null +++ b/.github/workflows/deploy-release.sh @@ -0,0 +1,58 @@ +#!/bin/sh + +fatal() +{ + echo "fatal: $1" 1>&2 + exit 1 +} + +if [ -z "${MAVEN_CENTRAL_USERNAME}" ] +then + fatal "MAVEN_CENTRAL_USERNAME is not set." +fi + +if [ -z "${MAVEN_CENTRAL_PASSWORD}" ] +then + fatal "MAVEN_CENTRAL_PASSWORD is not set." +fi + +(cat < + + + + io7m + + true + github-ci-maven-rsa-key + true + + + + + + + sonatype-nexus-snapshots + ${MAVEN_CENTRAL_USERNAME} + ${MAVEN_CENTRAL_PASSWORD} + + + sonatype-nexus-staging + ${MAVEN_CENTRAL_USERNAME} + ${MAVEN_CENTRAL_PASSWORD} + + + +EOF +) > "$HOME/.m2/settings.xml" || fatal "could not update $HOME/.m2/settings.xml" + +exec mvn \ +-Dio7m.release=true \ +-Dio7m.deployment=true \ +--batch-mode \ +--strict-checksums \ +-DskipTests=true \ +-DskipITs=true deploy diff --git a/.github/workflows/deploy-snapshot.sh b/.github/workflows/deploy-snapshot.sh new file mode 100755 index 0000000..227c79c --- /dev/null +++ b/.github/workflows/deploy-snapshot.sh @@ -0,0 +1,44 @@ +#!/bin/sh + +fatal() +{ + echo "fatal: $1" 1>&2 + exit 1 +} + +if [ -z "${MAVEN_CENTRAL_USERNAME}" ] +then + fatal "MAVEN_CENTRAL_USERNAME is not set." +fi + +if [ -z "${MAVEN_CENTRAL_PASSWORD}" ] +then + fatal "MAVEN_CENTRAL_PASSWORD is not set." +fi + +(cat < + + + sonatype-nexus-snapshots + ${MAVEN_CENTRAL_USERNAME} + ${MAVEN_CENTRAL_PASSWORD} + + + sonatype-nexus-staging + ${MAVEN_CENTRAL_USERNAME} + ${MAVEN_CENTRAL_PASSWORD} + + + +EOF +) > "$HOME/.m2/settings.xml" || fatal "could not update $HOME/.m2/settings.xml" + +exec mvn \ +--batch-mode \ +--strict-checksums \ +-DskipTests=true \ +-DskipITs=true deploy diff --git a/.github/workflows/deploy.linux.temurin.lts.yml b/.github/workflows/deploy.linux.temurin.lts.yml new file mode 100644 index 0000000..62851b8 --- /dev/null +++ b/.github/workflows/deploy.linux.temurin.lts.yml @@ -0,0 +1,28 @@ +name: deploy.linux.temurin.lts + +on: + push: + tags: [ com.io7m.jspearmint-* ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: JDK + uses: actions/setup-java@v4 + with: + java-version: 21 + distribution: 'temurin' + + - name: Import signing key + env: + PGP_SIGNING_KEY: ${{ secrets.PGP_SIGNING_KEY }} + run: echo "${PGP_SIGNING_KEY}" | gpg --import + + - name: Deploy release + env: + MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }} + MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} + run: .github/workflows/deploy-release.sh diff --git a/.github/workflows/main.linux.temurin.current.yml b/.github/workflows/main.linux.temurin.current.yml index 5f6e19e..83408ae 100644 --- a/.github/workflows/main.linux.temurin.current.yml +++ b/.github/workflows/main.linux.temurin.current.yml @@ -11,16 +11,28 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: JDK uses: actions/setup-java@v4 with: java-version: 22 distribution: 'temurin' + + - name: Collect project version + id: project_version + run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" + + - name: Collect project snapshot + id: project_is_snapshot + run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" + - name: Build - run: mvn --errors clean verify site + run: mvn --batch-mode --strict-checksums --errors clean verify site + - name: Upload test logs uses: actions/upload-artifact@v4 if: always() with: name: test-logs path: ./com.io7m.jspearmint.tests/target/surefire-reports + diff --git a/.github/workflows/main.linux.temurin.lts.yml b/.github/workflows/main.linux.temurin.lts.yml index 4154dd4..e75241e 100644 --- a/.github/workflows/main.linux.temurin.lts.yml +++ b/.github/workflows/main.linux.temurin.lts.yml @@ -11,20 +11,41 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: JDK uses: actions/setup-java@v4 with: java-version: 21 distribution: 'temurin' + + - name: Collect project version + id: project_version + run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" + + - name: Collect project snapshot + id: project_is_snapshot + run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" + - name: Build - run: mvn --errors clean verify site + run: mvn --batch-mode --strict-checksums --errors clean verify site + - name: Upload test logs uses: actions/upload-artifact@v4 if: always() with: name: test-logs path: ./com.io7m.jspearmint.tests/target/surefire-reports + - name: Coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4.3.1 with: + token: ${{ secrets.CODECOV_TOKEN }} file: com.io7m.jspearmint.tests/target/site/jacoco-aggregate/jacoco.xml + + - name: Deploy snapshot + if: ${{ steps.project_is_snapshot.outputs.IO7M_PROJECT_VERSION_IS_SNAPSHOT == 'true' }} + env: + MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }} + MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} + run: .github/workflows/deploy-snapshot.sh + diff --git a/.github/workflows/main.windows.temurin.current.yml b/.github/workflows/main.windows.temurin.current.yml index b84bbda..57bcb38 100644 --- a/.github/workflows/main.windows.temurin.current.yml +++ b/.github/workflows/main.windows.temurin.current.yml @@ -11,16 +11,28 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 + - name: JDK uses: actions/setup-java@v4 with: java-version: 22 distribution: 'temurin' + + - name: Collect project version + id: project_version + run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" + + - name: Collect project snapshot + id: project_is_snapshot + run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" + - name: Build - run: mvn --errors clean verify site + run: mvn --batch-mode --strict-checksums --errors clean verify site + - name: Upload test logs uses: actions/upload-artifact@v4 if: always() with: name: test-logs path: ./com.io7m.jspearmint.tests/target/surefire-reports + diff --git a/.github/workflows/main.windows.temurin.lts.yml b/.github/workflows/main.windows.temurin.lts.yml index 87488db..4ad70bc 100644 --- a/.github/workflows/main.windows.temurin.lts.yml +++ b/.github/workflows/main.windows.temurin.lts.yml @@ -11,16 +11,28 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 + - name: JDK uses: actions/setup-java@v4 with: java-version: 21 distribution: 'temurin' + + - name: Collect project version + id: project_version + run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" + + - name: Collect project snapshot + id: project_is_snapshot + run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" + - name: Build - run: mvn --errors clean verify site + run: mvn --batch-mode --strict-checksums --errors clean verify site + - name: Upload test logs uses: actions/upload-artifact@v4 if: always() with: name: test-logs path: ./com.io7m.jspearmint.tests/target/surefire-reports + diff --git a/.gitmodules b/.gitmodules index 69f595b..5c47e50 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ [submodule "com.io7m.jspearmint.tests/src/test/resources/com/io7m/jspearmint/tests/spirv_headers"] path = com.io7m.jspearmint.tests/src/test/resources/com/io7m/jspearmint/tests/spirv_headers url = https://github.com/KhronosGroup/SPIRV-Headers -[submodule ".jenkins"] - path = .jenkins - url = https://www.github.com/io7m/jenkinsfiles [submodule "com.io7m.jspearmint.generation/src/main/resources/com/io7m/jspearmint/generation/spirv_headers"] path = com.io7m.jspearmint.generation/src/main/resources/com/io7m/jspearmint/generation/spirv_headers url = https://github.com/KhronosGroup/SPIRV-Headers diff --git a/.jenkins b/.jenkins deleted file mode 160000 index 3213e21..0000000 --- a/.jenkins +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3213e21cdb5549e59c16e21658a9e87443301c7e diff --git a/README-CHANGES.xml b/README-CHANGES.xml index e26c131..0076741 100644 --- a/README-CHANGES.xml +++ b/README-CHANGES.xml @@ -2,6 +2,6 @@ - + diff --git a/README.in b/README.in new file mode 100644 index 0000000..7ab102a --- /dev/null +++ b/README.in @@ -0,0 +1,12 @@ + +## jspearmint + +The `jspearmint` package implements a set of tools for processing +[SPIR-V](https://www.khronos.org/spir/) bytecode from Java. + +## Features + +* High coverage test suite. +* [OSGi-ready](https://www.osgi.org/) +* [JPMS-ready](https://en.wikipedia.org/wiki/Java_Platform_Module_System) +* ISC license. diff --git a/README.md b/README.md index b3109e7..c01fddc 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,26 @@ jspearmint [![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jspearmint/com.io7m.jspearmint.svg?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jspearmint%22) [![Maven Central (snapshot)](https://img.shields.io/nexus/s/com.io7m.jspearmint/com.io7m.jspearmint?server=https%3A%2F%2Fs01.oss.sonatype.org&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/snapshots/com/io7m/jspearmint/) -[![Codecov](https://img.shields.io/codecov/c/github/io7m/jspearmint.svg?style=flat-square)](https://codecov.io/gh/io7m/jspearmint) +[![Codecov](https://img.shields.io/codecov/c/github/io7m-com/jspearmint.svg?style=flat-square)](https://codecov.io/gh/io7m-com/jspearmint) ![com.io7m.jspearmint](./src/site/resources/jspearmint.jpg?raw=true) | JVM | Platform | Status | |-----|----------|--------| -| OpenJDK (Temurin) Current | Linux | [![Build (OpenJDK (Temurin) Current, Linux)](https://img.shields.io/github/actions/workflow/status/io7m/jspearmint/main.linux.temurin.current.yml)](https://github.com/io7m/jspearmint/actions?query=workflow%3Amain.linux.temurin.current)| -| OpenJDK (Temurin) LTS | Linux | [![Build (OpenJDK (Temurin) LTS, Linux)](https://img.shields.io/github/actions/workflow/status/io7m/jspearmint/main.linux.temurin.lts.yml)](https://github.com/io7m/jspearmint/actions?query=workflow%3Amain.linux.temurin.lts)| -| OpenJDK (Temurin) Current | Windows | [![Build (OpenJDK (Temurin) Current, Windows)](https://img.shields.io/github/actions/workflow/status/io7m/jspearmint/main.windows.temurin.current.yml)](https://github.com/io7m/jspearmint/actions?query=workflow%3Amain.windows.temurin.current)| -| OpenJDK (Temurin) LTS | Windows | [![Build (OpenJDK (Temurin) LTS, Windows)](https://img.shields.io/github/actions/workflow/status/io7m/jspearmint/main.windows.temurin.lts.yml)](https://github.com/io7m/jspearmint/actions?query=workflow%3Amain.windows.temurin.lts)| +| OpenJDK (Temurin) Current | Linux | [![Build (OpenJDK (Temurin) Current, Linux)](https://img.shields.io/github/actions/workflow/status/io7m-com/jspearmint/main.linux.temurin.current.yml)](https://www.github.com/io7m-com/jspearmint/actions?query=workflow%3Amain.linux.temurin.current)| +| OpenJDK (Temurin) LTS | Linux | [![Build (OpenJDK (Temurin) LTS, Linux)](https://img.shields.io/github/actions/workflow/status/io7m-com/jspearmint/main.linux.temurin.lts.yml)](https://www.github.com/io7m-com/jspearmint/actions?query=workflow%3Amain.linux.temurin.lts)| +| OpenJDK (Temurin) Current | Windows | [![Build (OpenJDK (Temurin) Current, Windows)](https://img.shields.io/github/actions/workflow/status/io7m-com/jspearmint/main.windows.temurin.current.yml)](https://www.github.com/io7m-com/jspearmint/actions?query=workflow%3Amain.windows.temurin.current)| +| OpenJDK (Temurin) LTS | Windows | [![Build (OpenJDK (Temurin) LTS, Windows)](https://img.shields.io/github/actions/workflow/status/io7m-com/jspearmint/main.windows.temurin.lts.yml)](https://www.github.com/io7m-com/jspearmint/actions?query=workflow%3Amain.windows.temurin.lts)| + +## jspearmint + +The `jspearmint` package implements a set of tools for processing +[SPIR-V](https://www.khronos.org/spir/) bytecode from Java. + +## Features + +* High coverage test suite. +* [OSGi-ready](https://www.osgi.org/) +* [JPMS-ready](https://en.wikipedia.org/wiki/Java_Platform_Module_System) +* ISC license. + diff --git a/com.io7m.jspearmint.analysis/pom.xml b/com.io7m.jspearmint.analysis/pom.xml index ffe805f..d8d29f3 100644 --- a/com.io7m.jspearmint.analysis/pom.xml +++ b/com.io7m.jspearmint.analysis/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.analysis SPIR-V toolkit (Analysis) com.io7m.jspearmint.analysis - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.api/pom.xml b/com.io7m.jspearmint.api/pom.xml index aec759c..f4826fc 100644 --- a/com.io7m.jspearmint.api/pom.xml +++ b/com.io7m.jspearmint.api/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.api SPIR-V toolkit (API) com.io7m.jspearmint.api - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.cmdline/pom.xml b/com.io7m.jspearmint.cmdline/pom.xml index 45c0658..5c2d18d 100644 --- a/com.io7m.jspearmint.cmdline/pom.xml +++ b/com.io7m.jspearmint.cmdline/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.cmdline SPIR-V toolkit (Command-line) com.io7m.jspearmint.cmdline - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.disassembly.api/pom.xml b/com.io7m.jspearmint.disassembly.api/pom.xml index f6e63e6..f910f32 100644 --- a/com.io7m.jspearmint.disassembly.api/pom.xml +++ b/com.io7m.jspearmint.disassembly.api/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.disassembly.api SPIR-V toolkit (Disassembly API) com.io7m.jspearmint.disassembly.api - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.disassembly.vanilla/pom.xml b/com.io7m.jspearmint.disassembly.vanilla/pom.xml index 8d63d99..2dafedc 100644 --- a/com.io7m.jspearmint.disassembly.vanilla/pom.xml +++ b/com.io7m.jspearmint.disassembly.vanilla/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.disassembly.vanilla SPIR-V toolkit (Disassembly vanilla implementation) com.io7m.jspearmint.disassembly.vanilla - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.generation/pom.xml b/com.io7m.jspearmint.generation/pom.xml index 4ff1a21..d9146dd 100644 --- a/com.io7m.jspearmint.generation/pom.xml +++ b/com.io7m.jspearmint.generation/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.generation SPIR-V toolkit (Source code generation) com.io7m.jspearmint.generation - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.json_registry/pom.xml b/com.io7m.jspearmint.json_registry/pom.xml index 3473cd3..f42435e 100644 --- a/com.io7m.jspearmint.json_registry/pom.xml +++ b/com.io7m.jspearmint.json_registry/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.json_registry SPIR-V toolkit (JSON registry handling) com.io7m.jspearmint.json_registry - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.parser.api/pom.xml b/com.io7m.jspearmint.parser.api/pom.xml index 27a549d..ce921cb 100644 --- a/com.io7m.jspearmint.parser.api/pom.xml +++ b/com.io7m.jspearmint.parser.api/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.parser.api SPIR-V toolkit (Parser API) com.io7m.jspearmint.parser.api - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.parser.vanilla/pom.xml b/com.io7m.jspearmint.parser.vanilla/pom.xml index e1b4024..1634522 100644 --- a/com.io7m.jspearmint.parser.vanilla/pom.xml +++ b/com.io7m.jspearmint.parser.vanilla/pom.xml @@ -15,7 +15,7 @@ com.io7m.jspearmint.parser.vanilla SPIR-V toolkit (Vanilla parser implementation) com.io7m.jspearmint.parser.vanilla - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint diff --git a/com.io7m.jspearmint.tests/pom.xml b/com.io7m.jspearmint.tests/pom.xml index 78b5d53..0d7187a 100644 --- a/com.io7m.jspearmint.tests/pom.xml +++ b/com.io7m.jspearmint.tests/pom.xml @@ -15,10 +15,13 @@ com.io7m.jspearmint.tests SPIR-V toolkit (Test suite) com.io7m.jspearmint.tests - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint + true + true true + true diff --git a/pom.xml b/pom.xml index d438723..31e8883 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,7 @@ SPIR-V toolkit com.io7m.jspearmint - https://www.github.com/io7m/jspearmint + https://www.io7m.com/software/jspearmint com.io7m.jspearmint.json_registry @@ -33,10 +33,15 @@ - 2.0.0 - 0.0.1 + 0.0.1-SNAPSHOT 21 + + + 2.0.0 + 1.8.0 + + 2.10.0 2.16.1 5.10.1 @@ -50,9 +55,9 @@ - https://github.com/io7m/jspearmint - scm:git:https://github.com/io7m/jspearmint - scm:git:https://github.com/io7m/jspearmint + https://www.github.com/io7m-com/jspearmint + scm:git:https://www.github.com/io7m-com/jspearmint + scm:git:https://www.github.com/io7m-com/jspearmint @@ -65,7 +70,7 @@ - https://github.com/io7m/jspearmint/issues + https://www.github.com/io7m-com/jspearmint/issues GitHub Issues @@ -79,11 +84,15 @@ sonatype-nexus-staging https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + sonatype-nexus-snapshots + https://s01.oss.sonatype.org/content/repositories/snapshots/ + GitHub Actions - https://github.com/jspearmint/actions + https://www.github.com/io7m-com/jspearmint/actions diff --git a/src/site/resources/jspearmint_large.jpg b/src/site/resources/jspearmint_large.jpg deleted file mode 100644 index ba03c5f..0000000 Binary files a/src/site/resources/jspearmint_large.jpg and /dev/null differ diff --git a/src/site/resources/jspearmint_large.txt b/src/site/resources/jspearmint_large.txt deleted file mode 100644 index bb8c2fa..0000000 --- a/src/site/resources/jspearmint_large.txt +++ /dev/null @@ -1 +0,0 @@ -https://pixabay.com/photos/plant-spearmint-leaf-leaves-green-3690005/ diff --git a/src/site/resources/overview.xml b/src/site/resources/overview.xml index 5c4098b..0ebccf6 100644 --- a/src/site/resources/overview.xml +++ b/src/site/resources/overview.xml @@ -1,6 +1,6 @@