sonar-openedge-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.rssw.sonar.openedge</groupId> <artifactId>sonar-openedge-plugin</artifactId> <version>3.1.0</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"> <parent> <artifactId>sonar-openedge</artifactId> <groupId>eu.rssw</groupId> <version>3.1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>eu.rssw.sonar.openedge</groupId> <artifactId>sonar-openedge-plugin</artifactId> <packaging>sonar-plugin</packaging> <name>OpenEdge plugin for SonarQube</name> <description>Enables analysis of OpenEdge projects</description> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>sonar-openedge.txt</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>sonar-openedge.txt</exclude> </excludes> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <versionRange>[1.9.0,)</versionRange> <goals> <goal>check</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <versionRange>[1.5,)</versionRange> <goals> <goal>check-dependencies</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <version>1.23.0.740</version> <extensions>true</extensions> <configuration> <pluginKey>${sonar.pluginKey}</pluginKey> <pluginName>${sonar.pluginName}</pluginName> <pluginClass>${sonar.pluginClass}</pluginClass> <pluginApiMinVersion>9.14</pluginApiMinVersion> <sonarLintSupported>true</sonarLintSupported> <jreMinVersion>17</jreMinVersion> <skipDependenciesPackaging>true</skipDependenciesPackaging> <requiredForLanguages>oe,oedb</requiredForLanguages> <archive> <manifestEntries> <Implementation-Build>${git.commit}</Implementation-Build> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <transformers> <transformer> <resources> <resource>LICENSE</resource> <resource>LICENSE.txt</resource> <resource>NOTICE</resource> <resource>NOTICE.txt</resource> </resources> </transformer> </transformers> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api</artifactId> <version>10.14.0.2599</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api-impl</artifactId> <version>10.7.0.96327</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-csv</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>spotbugs-annotations</artifactId> <groupId>com.github.spotbugs</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>jquery</artifactId> <groupId>org.webjars</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.36</version> <scope>test</scope> </dependency> </dependencies> <properties> <sonar.pluginName>OpenEdge</sonar.pluginName> <sonar.pluginKey>openedge</sonar.pluginKey> <sonar.pluginClass>org.sonar.plugins.openedge.OpenEdgePlugin</sonar.pluginClass> </properties> </project>