sonar-scanner-java-library-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.scanner.lib</groupId> <artifactId>sonar-scanner-java-library-parent</artifactId> <version>3.3.1.450</version> </dependency>
<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.parent</groupId> <artifactId>parent</artifactId> <version>83.0.0.2369</version> </parent> <groupId>org.sonarsource.scanner.lib</groupId> <artifactId>sonar-scanner-java-library-parent</artifactId> <version>3.3.1.450</version> <packaging>pom</packaging> <name>SonarScanner Java Library - Parent</name> <description>Common library used by all Java-based Scanners</description> <url>https://github.com/SonarSource/sonar-scanner-java-library</url> <inceptionYear>2011</inceptionYear> <organization> <name>SonarSource</name> <url>http://www.sonarsource.com</url> </organization> <licenses> <license> <name>GNU LGPL 3</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>lib</module> <module>batch</module> <module>batch-interface</module> </modules> <scm> <connection>scm:git:git@github.com:SonarSource/sonar-scanner-java-library.git</connection> <developerConnection>scm:git:git@github.com:SonarSource/sonar-scanner-java-library.git</developerConnection> <url>https://github.com/SonarSource/sonar-scanner-java-library</url> <tag>HEAD</tag> </scm> <issueManagement> <system>JIRA</system> <url>https://jira.sonarsource.com/browse/SCANJLIB</url> </issueManagement> <properties> <maven.compiler.release>11</maven.compiler.release> <license.name>GNU LGPL v3</license.name> <!-- used for deployment to SonarSource Artifactory --> <gitRepositoryName>sonar-scanner-java-library</gitRepositoryName> <okhttp.version>4.12.0</okhttp.version> <mockito.version>5.14.2</mockito.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.16.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.27.1</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>${okhttp.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-urlconnection</artifactId> <version>${okhttp.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <version>${okhttp.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.11.3</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.26.3</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.17.1</version> </dependency> </dependencies> </dependencyManagement> <profiles> <profile> <id>its</id> <modules> <module>its</module> </modules> </profile> </profiles> </project>