sonar-scm-svn-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.scm.svn</groupId> <artifactId>sonar-scm-svn-plugin</artifactId> <version>1.10.0.1917</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.scm.svn</groupId> <artifactId>svn</artifactId> <version>1.10.0.1917</version> </parent> <artifactId>sonar-scm-svn-plugin</artifactId> <packaging>sonar-plugin</packaging> <name>SonarQube :: Plugins :: SCM :: SVN</name> <description>Subversion SCM Provider for SonarQube</description> <url>http://redirect.sonarsource.com/plugins/scmsvn.html</url> <scm> <url>https://github.com/SonarSource/sonar-scm-svn</url> </scm> <properties> <sonar.buildVersion>7.9</sonar.buildVersion> <sonar.pluginName>SVN</sonar.pluginName> <sonar.pluginClass>org.sonar.plugins.scm.svn.SvnPlugin</sonar.pluginClass> </properties> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.buildVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.tmatesoft.svnkit</groupId> <artifactId>svnkit</artifactId> <version>1.10.1</version> </dependency> <!-- unit tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <version>1.18.0.372</version> <configuration> <pluginName>Svn</pluginName> <skipDependenciesPackaging>true</skipDependenciesPackaging> <pluginClass>org.sonar.plugins.scm.svn.SvnPlugin</pluginClass> <sonarQubeMinVersion>5.6</sonarQubeMinVersion> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>false</shadedArtifactAttached> <minimizeJar>false</minimizeJar> <createDependencyReducedPom>false</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/LICENSE*</exclude> <exclude>META-INF/NOTICE*</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/*.SF</exclude> <exclude>LICENSE*</exclude> <exclude>NOTICE*</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>