-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: com.io7m.jaffirm 4.0.0 Change: (Backwards incompatible) Require JDK 17
- Loading branch information
Showing
43 changed files
with
177 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: main-openjdk_current-linux | ||
|
||
on: | ||
push: | ||
branches: [ develop, feature/*, release/* ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Build | ||
run: mvn --errors clean verify site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: main-openjdk_current-windows | ||
|
||
on: | ||
push: | ||
branches: [ develop, feature/*, release/* ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Build | ||
run: mvn --errors clean verify site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: main-openjdk_lts-linux | ||
|
||
on: | ||
push: | ||
branches: [ develop, feature/*, release/* ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Build | ||
run: mvn --errors clean verify site | ||
- name: Coverage | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
file: com.io7m.jaffirm.tests/target/site/jacoco/jacoco.xml |
Submodule .jenkins
updated
3 files
+55 −39 | com.io7m.jenkins.github.txt | |
+84 −0 | com.io7m.jenkins.github.windowless.txt | |
+1 −1 | notify.sh |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
jaffirm | ||
=== | ||
|
||
[![Travis](https://img.shields.io/travis/io7m/jaffirm.png?style=flat-square)](https://travis-ci.org/io7m/jaffirm) | ||
[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jaffirm/com.io7m.jaffirm.png?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jaffirm%22) | ||
[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jaffirm/com.io7m.jaffirm.svg?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jaffirm%22) | ||
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.io7m.jaffirm/com.io7m.jaffirm.svg?style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/com/io7m/jaffirm/) | ||
[![Codacy grade](https://img.shields.io/codacy/grade/8e7105dcfbf2437aa3402fbdb0269f89.png?style=flat-square)](https://www.codacy.com/app/github_79/jaffirm) | ||
[![Codecov](https://img.shields.io/codecov/c/github/io7m/jaffirm.png?style=flat-square)](https://codecov.io/gh/io7m/jaffirm) | ||
[![Codecov](https://img.shields.io/codecov/c/github/io7m/jaffirm.svg?style=flat-square)](https://codecov.io/gh/io7m/jaffirm) | ||
|
||
![jaffirm](./src/site/resources/jaffirm.jpg?raw=true) | ||
|
||
| JVM | Platform | Status | | ||
|-----------------|----------|--------| | ||
| OpenJDK LTS | Linux | [![Build (OpenJDK LTS, Linux)](https://img.shields.io/github/workflow/status/io7m/jaffirm/main-openjdk_lts-linux)](https://github.com/io7m/jaffirm/actions?query=workflow%3Amain-openjdk_lts-linux) | | ||
| OpenJDK Current | Linux | [![Build (OpenJDK Current, Linux)](https://img.shields.io/github/workflow/status/io7m/jaffirm/main-openjdk_current-linux)](https://github.com/io7m/jaffirm/actions?query=workflow%3Amain-openjdk_current-linux) | ||
| OpenJDK Current | Windows | [![Build (OpenJDK Current, Windows)](https://img.shields.io/github/workflow/status/io7m/jaffirm/main-openjdk_current-windows)](https://github.com/io7m/jaffirm/actions?query=workflow%3Amain-openjdk_current-windows) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/ContractConditionType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/ContractDoubleConditionType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/ContractException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/ContractIntConditionType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/ContractLongConditionType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/Contracts.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/InvariantViolationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/Invariants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
...o7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/PostconditionViolationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/Postconditions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
...io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/PreconditionViolationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/Preconditions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/SafeApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2017 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jaffirm.core/src/main/java/com/io7m/jaffirm/core/Violations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2017 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2016 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
@@ -18,5 +18,9 @@ | |
* Core types and functions. | ||
*/ | ||
|
||
@Export | ||
@Version("4.0.0") | ||
package com.io7m.jaffirm.core; | ||
|
||
import org.osgi.annotation.bundle.Export; | ||
import org.osgi.annotation.versioning.Version; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2017 <[email protected]> http://io7m.com | ||
* Copyright © 2016 Mark Raynsford <[email protected]> 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 | ||
|
@@ -20,8 +20,10 @@ | |
|
||
module com.io7m.jaffirm.core | ||
{ | ||
requires static org.immutables.value; | ||
requires static com.io7m.immutables.style; | ||
requires static org.immutables.value; | ||
requires static org.osgi.annotation.bundle; | ||
requires static org.osgi.annotation.versioning; | ||
|
||
requires com.io7m.junreachable.core; | ||
|
||
|
Oops, something went wrong.