Details
-
Task
-
Resolution: Fixed
-
Neutral
-
None
-
None
-
None
-
None
-
-
Empty show more show less
-
Empty show more show less
-
Basel 118
-
3
Description
- To find usages try to use the compiler flag -deprecation
- Validate that you don't only have Javadoc deprecated tags but annotations as well
- Annotate as deprecated
- Write in Javadoc that the class/method is deprecated since 5.6.
This snippet might be of help (even though output might be verbose):
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<compilerArgs>
<arg>-deprecation</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Checklists
Acceptance criteria
Attachments
Issue Links
- relates to
-
MAGNOLIA-7093 Remove uses of the Content API
-
- Closed
-
-
MAGNOLIA-7183 CoreModuleVersionHandler uses deprecated tasks – verify if still needed – replace/remove
-
- Open
-
-
MAGNOLIA-7137 AbstractConditionalRepositoryTask, RegisterServletTask, RenamePropertyAllModulesNodeTask, PropertiesImportTask use the HierarchyManager
-
- Closed
-