java-jsp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.java</groupId> <artifactId>java-jsp</artifactId> <version>8.14.1.39293</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonarsource.java</groupId> <artifactId>java</artifactId> <version>8.14.1.39293</version> </parent> <artifactId>java-jsp</artifactId> <name>SonarQube Java :: JSP</name> <dependencies> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-frontend</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <version>9.0.100</version> <exclusions> <exclusion> <groupId>org.eclipse.jdt</groupId> <artifactId>ecj</artifactId> </exclusion> </exclusions> </dependency> <!-- unit tests --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api-test-fixtures</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api-impl</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>test-compile</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.3.RELEASE</version> </artifactItem> <artifactItem> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId> <version>6.0</version> </artifactItem> <artifactItem> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/test-jars</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>de.thetaphi</groupId> <artifactId>forbiddenapis</artifactId> <executions> <execution> <id>forbid-junit4</id> <goals> <goal>testCheck</goal> </goals> <configuration> <signaturesFiles> <signaturesFile>../forbid_junit4.txt</signaturesFile> </signaturesFiles> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>