rspec-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sonarsource.javascript</groupId>
<artifactId>rspec-maven-plugin</artifactId>
<version>10.22.0.32148</version>
</dependency><project>
<modelVersion>4.0.0</modelVersion>
<artifactId>rspec-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>RSPEC Maven Plugin</name>
<parent>
<groupId>org.sonarsource.javascript</groupId>
<artifactId>maven-plugins</artifactId>
<version>10.22.0.32148</version>
</parent>
<properties>
<maven-plugin-tools.version>3.15.1</maven-plugin-tools.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin-tools.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sonarsource.rule-api</groupId>
<artifactId>rule-api</artifactId>
<version>2.10.0.4287</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.13.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.12.1</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-tools.version}</version>
<executions>
<execution>
<id>help-mojo</id>
<goals>
<!-- good practice is to generate help mojo for plugin -->
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>