Skip to content

Commit

Permalink
Update README and workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Mar 29, 2024
1 parent bfb915d commit a161f78
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.linux.temurin.current.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: JDK
uses: actions/setup-java@v3
with:
java-version: 21
java-version: 22
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.windows.temurin.current.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: JDK
uses: actions/setup-java@v3
with:
java-version: 21
java-version: 22
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ blackthorne
===

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

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

| JVM | Platform | Status |
|-----|----------|--------|
Expand Down Expand Up @@ -297,7 +297,7 @@ documents that can be sensibly typed. A given element handler
If the child elements of the handler can be of a set of different types, then
it would be desirable (for the sake of type-safety and readability) for those
child elements to have a common supertype that is not `Object`. The best way to
do this, schema allowing, is to use a sealedinterface:
do this, schema allowing, is to use a sealed interface:

```
sealed interface T { }
Expand Down

0 comments on commit a161f78

Please sign in to comment.