Skip to content

Commit 86e9950

Browse files
committed
Stop extending the deprecated AbstractOptions class
fixes #1337
1 parent 041b91d commit 86e9950

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aspectj-plugin/src/main/java/io/freefair/gradle/plugins/aspectj/AspectJCompileOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import org.gradle.process.CommandLineArgumentProvider;
1313

1414
import javax.inject.Inject;
15+
import java.io.Serializable;
1516
import java.util.ArrayList;
1617
import java.util.List;
1718

@@ -24,7 +25,7 @@
2425
*/
2526
@Getter
2627
@Setter
27-
public class AspectJCompileOptions extends AbstractOptions {
28+
public class AspectJCompileOptions implements Serializable {
2829

2930
/**
3031
* Accept as source bytecode any .class files in the .jar files or directories on Path.

0 commit comments

Comments
 (0)