Skip to content

Commit

Permalink
3.0.25 - IdType is serdable
Browse files Browse the repository at this point in the history
  • Loading branch information
saw303 committed Sep 1, 2023
1 parent e7e98ff commit d35de01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

subprojects { subproject ->

version = "3.0.24"
version = "3.0.25"

apply plugin: 'com.github.ben-manes.versions'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class RestApiPlugin implements Plugin<Project> {

project.configurations.maybeCreate(CONFIGURATION_REST_API)

final String pluginVersion = "3.0.24"
final String pluginVersion = "3.0.25"
final String libPhoneNumberVersion = "8.11.5"

final List<String> deps = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import ch.silviowangler.rest.model.ResourceLink;
import ch.silviowangler.rest.model.ResourceModel;
import ch.silviowangler.rest.model.SelfLinkProvider;
import io.micronaut.serde.annotation.Serdeable;
import java.io.Serializable;
import java.util.Optional;

Expand All @@ -35,6 +36,7 @@
*
* @author Silvio Wangler
*/
@Serdeable
public class IdType implements ResourceModel, Identifiable<String>, SelfLinkProvider, Serializable {

private String id;
Expand Down

0 comments on commit d35de01

Please sign in to comment.