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:
parent
e4f5d2c6ef
commit
451873fdb7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue