java-frontend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.java</groupId> <artifactId>java-frontend</artifactId> <version>8.9.1.38281</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonarsource.java</groupId> <artifactId>java</artifactId> <version>8.9.1.38281</version> </parent> <artifactId>java-frontend</artifactId> <name>SonarQube Java :: Front-end</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jdt-package</artifactId> <version>1.3.0.89</version> </dependency> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</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> <dependency> <groupId>org.sonarsource.sonarlint.core</groupId> <artifactId>sonarlint-plugin-api</artifactId> </dependency> <dependency> <groupId>org.sonarsource.sonarlint.core</groupId> <artifactId>sonarlint-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.sonarsource.sslr</groupId> <artifactId>sslr-core</artifactId> <exclusions> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.sonarsource.java</groupId> <artifactId>test-classpath-reader</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-migrationsupport</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.sonarsource.analyzer-commons</groupId> <artifactId>sonar-analyzer-commons</artifactId> </dependency> <dependency> <groupId>org.sonarsource.analyzer-commons</groupId> <artifactId>sonar-regex-parsing</artifactId> </dependency> <dependency> <groupId>org.sonarsource.analyzer-commons</groupId> <artifactId>sonar-performance-measure</artifactId> </dependency> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.16</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-test-projects</id> <phase>generate-test-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <!-- commons-collections --> <artifactItem> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/test-projects/commons-collections-3.2.1/src</outputDirectory> </artifactItem> <artifactItem> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> <outputDirectory>${project.build.directory}/test-projects/commons-collections-3.2.1/bin</outputDirectory> </artifactItem> <!-- struts-core --> <artifactItem> <groupId>org.apache.struts</groupId> <artifactId>struts-core</artifactId> <version>1.3.9</version> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/test-projects/struts-core-1.3.9/src</outputDirectory> </artifactItem> <artifactItem> <groupId>org.apache.struts</groupId> <artifactId>struts-core</artifactId> <version>1.3.9</version> <outputDirectory>${project.build.directory}/test-projects/struts-core-1.3.9/bin</outputDirectory> </artifactItem> </artifactItems> </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>