All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.LibraryDependencyCheck.html Maven / Gradle / Ivy

The newest version!

This rule verifies if some given Java packages or classes are used in a JSP file. The following code illustrates this rule, with java.sql,ArrayList as libraries:

Noncompliant Code Example

<%@ page import="java.sql.*" %>     <!-- Non-Compliant -->
<% java.util.ArrayList clients; %>  <!-- Non-Compliant -->
<% java.lang.String name; %>        <!-- Compliant -->




© 2015 - 2025 Weber Informatics LLC | Privacy Policy