Skip to content

Commit

Permalink
fix: remove transient modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jun 28, 2023
1 parent 13107fd commit 5f999cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import static org.owasp.dependencycheck.utils.Checksum.*
abstract class AbstractAnalyze extends ConfiguredTask {

@Internal
transient String currentProjectName = project.getName()
String currentProjectName = project.getName()
@Internal
Attribute artifactType = Attribute.of('artifactType', String)
// @Internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ import static org.owasp.dependencycheck.utils.Settings.KEYS.*
abstract class ConfiguredTask extends DefaultTask {

@Internal
transient DependencyCheckExtension config = (DependencyCheckExtension) project.getExtensions().findByName('dependencyCheck')
DependencyCheckExtension config = (DependencyCheckExtension) project.getExtensions().findByName('dependencyCheck')
@Internal
transient Settings settings
Settings settings
@Internal
String PROPERTIES_FILE = 'task.properties'

Expand Down

0 comments on commit 5f999cc

Please sign in to comment.