
META-INF.maven.org.sonarsource.scm.git.sonar-scm-git-plugin.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-scm-git-plugin Show documentation
Show all versions of sonar-scm-git-plugin Show documentation
Git SCM Provider for SonarQube
<?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.git</groupId> <artifactId>sonar-scm-git</artifactId> <version>1.8.0.1574</version> </parent> <artifactId>sonar-scm-git-plugin</artifactId> <packaging>sonar-plugin</packaging> <name>SonarQube :: Plugins :: SCM :: Git</name> <description>Git SCM Provider for SonarQube</description> <url>http://redirect.sonarsource.com/plugins/scmgit.html</url> <scm> <url>https://github.com/SonarSource/sonar-scm-git</url> </scm> <properties> <!-- Minimal supported version of SonarQube. It is defined in travis.sh for integration testing too. --> <sonar.apiVersion>7.7-alpha1</sonar.apiVersion> <sonar.pluginName>Git</sonar.pluginName> <sonar.pluginClass>org.sonarsource.scm.git.GitPlugin</sonar.pluginClass> </properties> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.apiVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>5.2.0.201812061821-r</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </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.11.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.22.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <configuration> <pluginName>Git</pluginName> <skipDependenciesPackaging>true</skipDependenciesPackaging> <pluginClass>org.sonarsource.scm.git.GitPlugin</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>true</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>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy