RepositoryRef Serializable

This is necessary to support caching of tasks that use RepsitoryRef as
inputs or outputs.

Issue gh-11158
This commit is contained in:
Rob Winch 2022-04-20 13:41:39 -05:00 committed by Eleftheria Stein
parent e4f5d2c6ef
commit 451873fdb7
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
package org.springframework.gradle.github;
public class RepositoryRef {
import java.io.Serializable;
public class RepositoryRef implements Serializable {
private static final long serialVersionUID = 7151218536746822797L;
private String owner;
private String name;