Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Actions-Pipeline #105

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
**/*/target/*-reports/*.xml

- name: Archive build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: |
**/target/*.jar
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ Adds implementations of a generic type into the schema. It will use a virtual ty
@Implementations(ComponentTypes)
public Component component;


public static class ComponentTypes implements TypeReqistry {
@Override
public Set<Class<?>> types() {
Expand Down Expand Up @@ -148,8 +147,7 @@ This is perfect if you maintain a Map with well known keys in your Java objects.
public CheckTypes checks;

@TypesAsFields(Checks)
public interface CheckTypes implements Map<String, MyChecker>

public interface CheckTypes implements Map<String, MyChecker>{}

public static class Checks implements FieldRegistry {
@Override
Expand Down
Loading