javascript-checks
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sonarsource.javascript</groupId>
<artifactId>javascript-checks</artifactId>
<version>12.3.0.39932</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.javascript</groupId>
<artifactId>sonar-plugin</artifactId>
<version>12.3.0.39932</version>
</parent>
<artifactId>javascript-checks</artifactId>
<name>SonarQube JavaScript :: Checks</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>api</artifactId>
</dependency>
<dependency>
<groupId>org.sonarsource.api.plugin</groupId>
<artifactId>sonar-plugin-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<filesets>
<fileset>
<directory>${maven.multiModuleProjectDirectory}/resources/rule-data</directory>
</fileset>
<fileset>
<directory>${project.basedir}/src/main/resources</directory>
<includes>
<include>org/sonar/l10n/javascript/rules/javascript/**</include>
<include>rspec.sha</include>
</includes>
</fileset>
<fileset>
<directory>${maven.multiModuleProjectDirectory}/packages/analysis/src/jsts/rules</directory>
<includes>
<include>**/generated-meta.ts</include>
<include>metas.ts</include>
<include>plugin-rules.ts</include>
<include>rules.ts</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>Generate rule metadata</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<workingDirectory>../..</workingDirectory>
<arguments>
<argument>run</argument>
<argument>generate-meta</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>Generate the Java Check classes</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<workingDirectory>../..</workingDirectory>
<arguments>
<argument>run</argument>
<argument>generate-java-rule-classes</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>Update README with rule counts</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<workingDirectory>../..</workingDirectory>
<arguments>
<argument>run</argument>
<argument>count-rules</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>