Skip to content

Commit

Permalink
Move to new organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed May 3, 2024
1 parent a6697af commit d07e79b
Show file tree
Hide file tree
Showing 35 changed files with 39 additions and 31 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.linux.temurin.current.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 20
java-version: 22
distribution: 'temurin'
- name: Build
run: ./.github/workflows/run-with-xvfb.sh mvn --errors clean verify site
- name: Upload video
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/main.linux.temurin.lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
java-version: 21
distribution: 'temurin'
- name: Build
run: ./.github/workflows/run-with-xvfb.sh mvn --errors clean verify site
- name: Upload video
Expand All @@ -30,6 +31,7 @@ jobs:
name: test-logs
path: ./com.io7m.jwheatsheaf.tests/target/surefire-reports
- name: Coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4.3.1
with:
file: com.io7m.jwheatsheaf.tests/target/site/jacoco/jacoco.xml
token: ${{ secrets.CODECOV_TOKEN }}
file: com.io7m.jwheatsheaf.tests/target/site/jacoco-aggregate/jacoco.xml
7 changes: 4 additions & 3 deletions .github/workflows/main.windows.temurin.current.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 20
java-version: 22
distribution: 'temurin'
- name: Build
run: mvn -DskipTests=true --errors clean verify site
7 changes: 4 additions & 3 deletions .github/workflows/main.windows.temurin.lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
java-version: 21
distribution: 'temurin'
- name: Build
run: mvn -DskipTests=true --errors clean verify site
2 changes: 1 addition & 1 deletion README-CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@
</c:release>
</c:releases>
<c:ticket-systems>
<c:ticket-system default="true" id="com.github.io7m.jwheatsheaf" url="https://www.github.com/io7m/jwheatsheaf/issues/"/>
<c:ticket-system default="true" id="com.github.io7m.jwheatsheaf" url="https://www.github.com/io7m-com/jwheatsheaf/issues/"/>
</c:ticket-systems>
</c:changelog>
2 changes: 1 addition & 1 deletion README.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if not fully API-compatible.
* Directory creation.
* Configurable, extensible file/directory filtering.
* Simple case-insensitive directory searching.
* Written in pure Java 17.
* Written in pure Java 21.
* [OSGi](https://www.osgi.org/) ready
* [JPMS](https://en.wikipedia.org/wiki/Java_Platform_Module_System) ready
* ISC license
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ jwheatsheaf

[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jwheatsheaf/com.io7m.jwheatsheaf.svg?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jwheatsheaf%22)
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/com.io7m.jwheatsheaf/com.io7m.jwheatsheaf?server=https%3A%2F%2Fs01.oss.sonatype.org&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/snapshots/com/io7m/jwheatsheaf/)
[![Codecov](https://img.shields.io/codecov/c/github/io7m/jwheatsheaf.svg?style=flat-square)](https://codecov.io/gh/io7m/jwheatsheaf)
[![Codecov](https://img.shields.io/codecov/c/github/io7m-com/jwheatsheaf.svg?style=flat-square)](https://codecov.io/gh/io7m-com/jwheatsheaf)

![com.io7m.jwheatsheaf](./src/site/resources/jwheatsheaf.jpg?raw=true)

| JVM | Platform | Status |
|-----|----------|--------|
| OpenJDK (Temurin) Current | Linux | [![Build (OpenJDK (Temurin) Current, Linux)](https://img.shields.io/github/actions/workflow/status/io7m/jwheatsheaf/main.linux.temurin.current.yml)](https://github.com/io7m/jwheatsheaf/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/jwheatsheaf/main.linux.temurin.lts.yml)](https://github.com/io7m/jwheatsheaf/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/jwheatsheaf/main.windows.temurin.current.yml)](https://github.com/io7m/jwheatsheaf/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/jwheatsheaf/main.windows.temurin.lts.yml)](https://github.com/io7m/jwheatsheaf/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/jwheatsheaf/main.linux.temurin.current.yml)](https://www.github.com/io7m-com/jwheatsheaf/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/jwheatsheaf/main.linux.temurin.lts.yml)](https://www.github.com/io7m-com/jwheatsheaf/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/jwheatsheaf/main.windows.temurin.current.yml)](https://www.github.com/io7m-com/jwheatsheaf/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/jwheatsheaf/main.windows.temurin.lts.yml)](https://www.github.com/io7m-com/jwheatsheaf/actions?query=workflow%3Amain.windows.temurin.lts)|


# jwheatsheaf
Expand All @@ -27,7 +27,7 @@ if not fully API-compatible.
* Directory creation.
* Configurable, extensible file/directory filtering.
* Simple case-insensitive directory searching.
* Written in pure Java 17.
* Written in pure Java 21.
* [OSGi](https://www.osgi.org/) ready
* [JPMS](https://en.wikipedia.org/wiki/Java_Platform_Module_System) ready
* ISC license
Expand Down
3 changes: 3 additions & 0 deletions com.io7m.jwheatsheaf.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
<url>https://www.io7m.com/software/jwheatsheaf</url>

<properties>
<bnd.baseline.skip>true</bnd.baseline.skip>
<checkstyle.skip>true</checkstyle.skip>
<mdep.analyze.skip>true</mdep.analyze.skip>
<spotbugs.skip>true</spotbugs.skip>
</properties>

<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
</licenses>

<scm>
<url>https://github.com/io7m/jwheatsheaf</url>
<connection>scm:git:https://github.com/io7m/jwheatsheaf</connection>
<developerConnection>scm:git:https://github.com/io7m/jwheatsheaf</developerConnection>
<url>https://www.github.com/io7m-com/jwheatsheaf</url>
<connection>scm:git:https://www.github.com/io7m-com/jwheatsheaf</connection>
<developerConnection>scm:git:https://www.github.com/io7m-com/jwheatsheaf</developerConnection>
</scm>

<developers>
Expand All @@ -73,7 +73,7 @@
</contributors>

<issueManagement>
<url>https://github.com/io7m/jwheatsheaf/issues</url>
<url>https://www.github.com/io7m-com/jwheatsheaf/issues</url>
<system>GitHub Issues</system>
</issueManagement>

Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/documentation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3>User documentation</h3>

<p>
See the <a href="https://github.com/io7m/jwheatsheaf/blob/develop/README.md">README.md</a> for documentation.
See the <a href="https://www.github.com/io7m-com/jwheatsheaf/blob/develop/README.md">README.md</a> for documentation.
</p>

<h4>JavaDoc</h4>
Expand Down
8 changes: 4 additions & 4 deletions src/site/resources/overview.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<div xmlns="http://www.w3.org/1999/xhtml">
<p class="shields">
<a href="https://github.com/io7m/jwheatsheaf/actions?query=workflow%3Amain.linux.temurin.lts">
<img src="https://img.shields.io/github/actions/workflow/status/io7m/jwheatsheaf/main.linux.temurin.lts.yml"
<a href="https://www.github.com/io7m-com/jwheatsheaf/actions?query=workflow%3Amain.linux.temurin.lts">
<img src="https://img.shields.io/github/actions/workflow/status/io7m-com/jwheatsheaf/main.linux.temurin.lts.yml"
alt="Build status"/>
</a>
<a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jwheatsheaf%22">
<img src="https://img.shields.io/maven-central/v/com.io7m.jwheatsheaf/com.io7m.jwheatsheaf.svg?style=flat-square"
alt="Maven Central"/>
</a>
<a href="https://codecov.io/gh/io7m/jwheatsheaf">
<img src="https://img.shields.io/codecov/c/github/io7m/jwheatsheaf.svg?style=flat-square"
<a href="https://codecov.io/gh/io7m-com/jwheatsheaf">
<img src="https://img.shields.io/codecov/c/github/io7m-com/jwheatsheaf.svg?style=flat-square"
alt="Codecov"/>
</a>
</p>
Expand Down

0 comments on commit d07e79b

Please sign in to comment.