Skip to content

Commit

Permalink
Merge pull request #588 from gsmet/fix-repository-event
Browse files Browse the repository at this point in the history
Fix some of the @repository events
  • Loading branch information
gsmet authored Mar 20, 2024
2 parents 7fd5dbb + ab47434 commit f8888ae
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
String NAME = Actions.EDITED;
}

@Release(Privatized.NAME)
@Repository(Privatized.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
Expand All @@ -64,7 +64,7 @@
String NAME = Actions.PRIVATIZED;
}

@Release(Publicized.NAME)
@Repository(Publicized.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
Expand All @@ -73,7 +73,7 @@
String NAME = Actions.PUBLICIZED;
}

@Release(Renamed.NAME)
@Repository(Renamed.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
Expand All @@ -82,7 +82,7 @@
String NAME = Actions.RENAMED;
}

@Release(Transferred.NAME)
@Repository(Transferred.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
Expand All @@ -91,7 +91,7 @@
String NAME = Actions.TRANSFERRED;
}

@Release(Unarchived.NAME)
@Repository(Unarchived.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
Expand Down

0 comments on commit f8888ae

Please sign in to comment.