-
Notifications
You must be signed in to change notification settings - Fork 0
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.jade 1.0.2 Change: (Backwards incompatible) Require JDK 17
- Loading branch information
Showing
50 changed files
with
264 additions
and
111 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.jade.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,4 +1,4 @@ | ||
Copyright © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
Copyright © 2020 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,11 +1,15 @@ | ||
jade | ||
=== | ||
|
||
[![Travis](https://img.shields.io/travis/io7m/jade.png?style=flat-square)](https://travis-ci.org/io7m/jade) | ||
[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jade/com.io7m.jade.png?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jade%22) | ||
[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.jade/com.io7m.jade.svg?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.jade%22) | ||
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.io7m.jade/com.io7m.jade.svg?style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/com/io7m/jade/) | ||
[![Codacy grade](https://img.shields.io/codacy/grade/1cb085ef5ec44d43b9763ab8c500d927.png?style=flat-square)](https://www.codacy.com/app/github_79/jade) | ||
[![Codecov](https://img.shields.io/codecov/c/github/io7m/jade.png?style=flat-square)](https://codecov.io/gh/io7m/jade) | ||
[![Codecov](https://img.shields.io/codecov/c/github/io7m/jade.svg?style=flat-square)](https://codecov.io/gh/io7m/jade) | ||
|
||
![jade](./src/site/resources/jade.jpg?raw=true) | ||
|
||
| JVM | Platform | Status | | ||
|-----------------|----------|--------| | ||
| OpenJDK LTS | Linux | [![Build (OpenJDK LTS, Linux)](https://img.shields.io/github/workflow/status/io7m/jade/main-openjdk_lts-linux)](https://github.com/io7m/jade/actions?query=workflow%3Amain-openjdk_lts-linux) | | ||
| OpenJDK Current | Linux | [![Build (OpenJDK Current, Linux)](https://img.shields.io/github/workflow/status/io7m/jade/main-openjdk_current-linux)](https://github.com/io7m/jade/actions?query=workflow%3Amain-openjdk_current-linux) | ||
| OpenJDK Current | Windows | [![Build (OpenJDK Current, Windows)](https://img.shields.io/github/workflow/status/io7m/jade/main-openjdk_current-windows)](https://github.com/io7m/jade/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.jade.api/src/main/java/com/io7m/jade/api/ApplicationDirectories.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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.jade.api/src/main/java/com/io7m/jade/api/ApplicationDirectoriesType.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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.jade.api/src/main/java/com/io7m/jade/api/ApplicationDirectoryConfigurationType.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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.jade.api/src/main/java/com/io7m/jade/api/ApplicationNames.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 | ||
|
@@ -23,6 +23,10 @@ | |
import java.nio.file.Path; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A set of directories that override the default selection. | ||
*/ | ||
|
||
public final class ApplicationOverrideDirectories | ||
implements ApplicationDirectoryProviderType | ||
{ | ||
|
@@ -31,6 +35,12 @@ public final class ApplicationOverrideDirectories | |
private Path dataDirectory; | ||
private Path cacheDirectory; | ||
|
||
/** | ||
* A set of directories that override the default selection. | ||
* | ||
* @param inBaseDirectory The base directory | ||
*/ | ||
|
||
public ApplicationOverrideDirectories( | ||
final Path inBaseDirectory) | ||
{ | ||
|
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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 | ||
|
@@ -24,13 +24,21 @@ | |
import java.nio.file.Paths; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A set of "portable" directories. | ||
*/ | ||
|
||
public final class ApplicationPortableDirectories | ||
implements ApplicationDirectoryProviderType | ||
{ | ||
private Path configurationDirectory; | ||
private Path dataDirectory; | ||
private Path cacheDirectory; | ||
|
||
/** | ||
* A set of "portable" directories. | ||
*/ | ||
|
||
public ApplicationPortableDirectories() | ||
{ | ||
|
||
|
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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 | ||
|
@@ -21,11 +21,21 @@ | |
|
||
import java.util.Objects; | ||
|
||
/** | ||
* An application provider context. | ||
*/ | ||
|
||
public final class ApplicationProviderContext | ||
implements ApplicationProviderContextType | ||
{ | ||
private final ApplicationDirectoryConfiguration configuration; | ||
|
||
/** | ||
* An application provider context. | ||
* | ||
* @param inConfiguration The application directory configuration | ||
*/ | ||
|
||
public ApplicationProviderContext( | ||
final ApplicationDirectoryConfiguration inConfiguration) | ||
{ | ||
|
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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 | ||
|
@@ -25,9 +25,17 @@ | |
import java.util.Optional; | ||
import java.util.ServiceLoader; | ||
|
||
/** | ||
* An application environment based on the real system environment. | ||
*/ | ||
|
||
public final class ApplicationRealEnvironment | ||
implements ApplicationEnvironmentType | ||
{ | ||
/** | ||
* An application environment based on the real system environment. | ||
*/ | ||
|
||
public ApplicationRealEnvironment() | ||
{ | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
com.io7m.jade.api/src/main/java/com/io7m/jade/api/internal/package-info.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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.jade.api/src/main/java/com/io7m/jade/api/package-info.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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
2 changes: 1 addition & 1 deletion
2
com.io7m.jade.documentation/src/main/java/com/io7m/jade/documentation/Documentation.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 © 2019 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2019 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.jade.documentation/src/main/java/com/io7m/jade/documentation/package-info.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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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 © 2020 Mark Raynsford <[email protected]> http://io7m.com | ||
* Copyright © 2020 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
Oops, something went wrong.