File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/groovy/org/owasp/dependencycheck/gradle/tasks Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ import static org.owasp.dependencycheck.utils.Checksum.*
60
60
abstract class AbstractAnalyze extends ConfiguredTask {
61
61
62
62
@Internal
63
- transient String currentProjectName = project. getName()
63
+ String currentProjectName = project. getName()
64
64
@Internal
65
65
Attribute artifactType = Attribute . of(' artifactType' , String )
66
66
// @Internal
Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ import static org.owasp.dependencycheck.utils.Settings.KEYS.*
37
37
abstract class ConfiguredTask extends DefaultTask {
38
38
39
39
@Internal
40
- transient DependencyCheckExtension config = (DependencyCheckExtension ) project. getExtensions(). findByName(' dependencyCheck' )
40
+ DependencyCheckExtension config = (DependencyCheckExtension ) project. getExtensions(). findByName(' dependencyCheck' )
41
41
@Internal
42
- transient Settings settings
42
+ Settings settings
43
43
@Internal
44
44
String PROPERTIES_FILE = ' task.properties'
45
45
You can’t perform that action at this time.
0 commit comments